/* FONTE HELLO MOODY */
@font-face {
  font-family: 'Hello Moody';
  src: url('HelloMoody.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* VARIÁVEIS DE COR */
:root {
  --pink: #f4b3b8;
  --green: #a9c6c3;
  --blue: #6b7fa3;
  --yellow: #fcd173;
  --white: #ffffff;
  --dark: #333333;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background:
    linear-gradient(
      135deg,
      #faf9f8 0%,
      rgba(169, 198, 195, 0.1) 45%,
      rgba(253, 209, 115, 0.06) 100%
    );
  background-attachment: fixed;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

html {
  background:
    linear-gradient(
      135deg,
      #faf9f8 0%,
      rgba(169, 198, 195, 0.1) 45%,
      rgba(253, 209, 115, 0.06) 100%
    );
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Hello Moody', 'Fredoka', sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}


/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--green);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  z-index: 1000;
}

.skip-to-content:focus {
  top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* HEADER */
.header {
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 18px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 88px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  transition: padding 0.45s, height 0.45s, box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backface-visibility: hidden;
}

.header.nav-scrolled {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 14px 40px;
  height: 80px;
}

/* HAMBURGER MENU */
.hamburger {
  cursor: pointer;
  display: none;
  border: none;
  background: none;
  padding: 8px;
  width: 50px;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 28px 32px;
  backface-visibility: hidden;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}

.mobile-menu-link {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.02em;
  font-weight: 500;
  letter-spacing: 0.35px;
  padding: 13px 18px;
  border-radius: 12px;
  transition: background 0.3s, color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  will-change: background, color;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.mobile-menu-link:hover {
  background: rgba(169, 198, 195, 0.12);
  color: var(--green);
}

.mobile-menu-link:focus-visible {
  outline-color: var(--green);
  background: rgba(169, 198, 195, 0.12);
  color: var(--green);
}

.mobile-menu-cta {
  background: var(--yellow);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 24px;
  text-align: center;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 12px;
  font-size: 0.94em;
  letter-spacing: 0.25px;
  will-change: background, transform, box-shadow;
  outline: 2px solid transparent;
  outline-offset: 2px;
  display: inline-block;
  width: 100%;
}

.mobile-menu-cta:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240, 190, 77, 0.18);
}

.mobile-menu-cta:focus-visible {
  outline-color: var(--green);
  background: var(--green);
  color: white;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .header {
    padding: 14px 20px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: visible;
  }

  .header .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .header.nav-scrolled {
    padding: 10px 20px;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .header .menu {
    display: none !important;
  }

  .header .btn-primary {
    display: none !important;
  }

  .mobile-menu {
    top: 88px;
    padding: 20px 24px;
  }

  .mobile-menu-content {
    gap: 12px;
  }

  .mobile-menu-link {
    padding: 12px 16px;
    font-size: 0.98em;
  }

  .mobile-menu-cta {
    padding: 11px 24px;
    margin-top: 8px;
  }

  /* Mobile Dropdown */
  .mobile-menu-dropdown-trigger {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.98em;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.25s;
  }

  .mobile-menu-dropdown-trigger:hover {
    background: rgba(169, 198, 195, 0.1);
  }

  .mobile-menu-dropdown-trigger span {
    font-size: 0.65em;
    transition: transform 0.3s;
  }

  .mobile-menu-dropdown-trigger[aria-expanded="true"] span {
    transform: rotate(180deg);
  }

  .mobile-menu-dropdown {
    background: rgba(169, 198, 195, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    margin: 8px 0;
  }

  .mobile-menu-dropdown-link {
    display: block;
    padding: 12px 32px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.92em;
    transition: background 0.25s;
  }

  .mobile-menu-dropdown-link:hover {
    background: rgba(169, 198, 195, 0.15);
  }
}

.header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo img {
  height: 56px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.header .logo img:hover {
  transform: scale(1.025);
  opacity: 0.94;
}

.header .menu {
  display: flex;
  gap: 42px;
  flex: 1;
  margin-left: 72px;
  align-items: center;
}

.header .menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.94em;
  letter-spacing: 0.4px;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  will-change: color, transform;
  outline: 2px solid transparent;
  outline-offset: 4px;
}

.header .menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.2px;
  background: var(--green);
  border-radius: 1px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header .menu a:hover {
  color: var(--green);
  transform: translateY(-0.5px);
}

.header .menu a:hover::after {
  width: 100%;
}

.header .menu a:focus-visible {
  outline-color: var(--green);
  color: var(--green);
}

.header .menu a:focus-visible::after {
  width: 100%;
}

/* DROPDOWN ESPECIALIDADES */
.menu-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 0.65em;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.menu-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 260px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%) translateY(-8px);
  z-index: 999;
}

.menu-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 400;
  font-size: 0.92em;
  letter-spacing: 0.3px;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.dropdown-menu a:first-child {
  border-radius: 12px 12px 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 12px 12px;
}

.dropdown-menu a:hover {
  background: rgba(169, 198, 195, 0.15);
  color: var(--green);
  padding-left: 28px;
}

.dropdown-menu a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
  background: rgba(169, 198, 195, 0.1);
}

/* PÁGINAS DE ESPECIALIDADES */
.especialidade-hero {
  background: linear-gradient(135deg, rgba(169, 198, 195, 0.2) 0%, rgba(253, 209, 115, 0.1) 100%);
  padding: 80px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(169, 198, 195, 0.2);
  margin-top: 88px;
  position: relative;
  overflow: hidden;
}

.especialidade-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(244, 179, 184, 0.1) 0%, transparent 50%);
}

.especialidade-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Animal mobile no hero — escondido por padrão */
.hero-animal-mobile {
  display: none;
}

.hero-title-row {
  display: block;
}

.especialidade-hero h1 {
  font-size: 3em;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 400;
}

.especialidade-breadcrumb {
  font-size: 0.95em;
  color: var(--blue);
}

.especialidade-breadcrumb a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s;
}

.especialidade-breadcrumb a:hover {
  color: var(--dark);
  text-decoration: underline;
}

.especialidade-content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
}

.especialidade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.especialidade-info h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--dark);
}

.especialidade-info h3 {
  font-size: 1.3em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark);
}

.especialidade-info p {
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 15px;
}

.especialidade-lista {
  list-style: none;
  margin-left: 0;
}

.especialidade-lista li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--dark);
  line-height: 1.6;
}

.especialidade-lista li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.especialidade-medico {
  position: relative;
}

.medico-card-especialidade {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

/* CARDS HORIZONTAIS RETANGULARES (PEDIATRIA) */
.medicos-lista-vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 10px;
}

.medico-card-horizontal {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.medico-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.medico-foto-horizontal {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  border: 3px solid var(--green);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 5px;
}

.medico-info-horizontal {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  flex: 1;
}

.medico-info-horizontal h3 {
  font-size: 1.5em;
  margin-bottom: 5px;
  color: var(--dark);
}

.medico-info-horizontal .btn-agendar-especialidade {
  align-self: center;
  margin-top: 10px;
}

/* CARDS RESUMIDOS (PEDIATRIA) */
.medicos-resumidos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.medico-card-resumido {
  background: white;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.medico-card-resumido:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.medico-foto-resumida {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  margin-bottom: 16px;
  border: 3px solid var(--green);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.medico-foto-grande {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  display: block;
  border: 3px solid var(--green);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  align-self: center;
}

.gustavo-medico {
  object-position: center 20% !important;
}

.matheus-medico {
  object-position: center 10% !important;
}

.luiza-medico {
  object-position: center 15% !important;
}

.lucas-medico {
  object-position: center 20% !important;
}

@keyframes cachorro-balanco {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.cachorro-decoration {
  position: absolute;
  bottom: 250px;
  left: 100px;
  width: 300px;
  z-index: 1;
  pointer-events: none;
  animation: cachorro-balanco 3s ease-in-out infinite;
}

.cachorro-decoration img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

/* Desktop 1920px+ (padrão) */
.camaleao-decoration {
  position: absolute;
  bottom: 200px;
  right: 360px;
  width: 250px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(15deg);
}

.camaleao-decoration img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.elefante-decoration {
  position: absolute;
  bottom: 260px;
  right: 280px;
  width: 250px;
  z-index: 1;
  pointer-events: none;
}

.elefante-decoration img {
  width: 100%;
  height: auto;
  opacity: 1;
}

.jacare-decoration {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: -40px;
  right: -30px;
  width: 180px;
}

.jacare-decoration img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .jacare-decoration {
    top: -50px;
    right: -40px;
    width: 220px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .jacare-decoration {
    top: -35px;
    right: -20px;
    width: 160px;
  }
}

@media (max-width: 1023px) {
  .jacare-decoration {
    display: none;
  }
}

.leao-decoration {
  position: absolute;
  bottom: 360px;
  right: 360px;
  width: 150px;
  z-index: 1;
  pointer-events: none;
}

.leao-decoration img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

@keyframes balao-flutuacao {
  0%, 100% {
    transform: translateY(0px) rotate(-20deg);
  }
  50% {
    transform: translateY(-15px) rotate(-20deg);
  }
}

.balao01-decoration {
  position: absolute;
  bottom: 250px;
  right: 360px;
  width: 170px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-20deg);
  animation: balao-flutuacao 3s ease-in-out infinite;
}

.balao01-decoration img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.medico-card-especialidade h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--dark);
}

.medico-especialidade {
  color: var(--green);
  font-weight: 600;
  margin-bottom: 5px;
}

.medico-credencial {
  color: var(--blue);
  font-size: 0.9em;
  margin-bottom: 15px;
}

.medico-bio {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 20px;
  text-align: center;
}

.btn-agendar-especialidade {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95em;
  transition: background 0.4s, transform 0.4s, box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(169, 198, 195, 0.3);
  display: inline-block;
  text-decoration: none;
}

.btn-agendar-especialidade:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(169, 198, 195, 0.4);
}

.btn-agendar-especialidade:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.medico-placeholder {
  padding: 30px;
  text-align: center;
}

.medico-placeholder p {
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 25px;
}

@media (max-width: 1024px) {
  .especialidade-grid {
    gap: 40px;
  }

  .cachorro-decoration {
    width: 200px;
    left: 20px;
    bottom: 150px;
  }

  .elefante-decoration {
    width: 160px;
    right: 200px;
    bottom: 150px;
  }

  .jacare-decoration {
    width: 160px;
    right: 200px;
    bottom: 200px;
  }

  .leao-decoration {
    width: 110px;
    right: 200px;
    bottom: 200px;
  }

  .balao01-decoration {
    width: 120px;
    right: 200px;
    bottom: 150px;
  }
}

@media (max-width: 768px) {
  .medico-card-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 24px;
    gap: 20px;
  }

  .medico-info-horizontal {
    text-align: left;
    align-items: flex-start;
  }

  .medico-info-horizontal .btn-agendar-especialidade {
    align-self: flex-start;
  }

  .medico-foto-horizontal {
    width: 150px;
    height: 150px;
  }

  .especialidade-hero {
    padding: 40px 20px;
    margin-top: 80px;
  }

  .especialidade-hero h1 {
    font-size: 2em;
    margin-bottom: 0;
  }

  .especialidade-hero {
    overflow: visible;
  }

  .hero-animal-mobile {
    display: block;
    position: absolute;
    width: 90px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    left: 12px;
    top: 12px;
  }

  .especialidade-content {
    margin: 40px auto;
    padding: 0 20px;
  }

  .especialidade-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .especialidade-info h2 {
    font-size: 1.5em;
  }

  .especialidade-info h3 {
    font-size: 1.1em;
  }

  .especialidade-info p {
    font-size: 1em;
  }

  .medico-foto-grande {
    width: 150px;
    height: 150px;
  }

  .cachorro-decoration,
  .elefante-decoration,
  .jacare-decoration,
  .leao-decoration,
  .balao01-decoration {
    display: none;
  }
}

@media (max-width: 480px) {
  .especialidade-hero {
    padding: 30px 16px;
    margin-top: 70px;
  }

  .especialidade-hero h1 {
    font-size: 1.6em;
  }

  .hero-animal-mobile {
    width: 72px;
  }

  .hero-animal-jacare {
    width: 110px;
  }


  .especialidade-content {
    padding: 0 16px;
    margin: 30px auto;
  }

  .especialidade-grid {
    gap: 30px;
  }

  .medico-foto-grande {
    width: 130px;
    height: 130px;
  }

  .medico-card-especialidade {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .medicos-resumidos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 11px 30px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.93em;
  letter-spacing: 0.25px;
  transition: background 0.4s, transform 0.4s, box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  will-change: background, transform, box-shadow;
  outline: 2px solid transparent;
  outline-offset: 2px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(240, 190, 77, 0.2);
}

.btn-primary:focus-visible {
  outline-color: var(--green);
  background: var(--green);
  color: var(--white);
}

/* HERO - COMPOSIÇÃO ARTÍSTICA LIVRE (NÃO GRID) */
.hero {
  position: relative;
  width: 100%;
  min-height: 800px;
  height: 100vh;
  overflow: visible;
  padding-bottom: 140px;
  box-sizing: border-box;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(169, 198, 195, 0.25) 0%, transparent 15%, transparent 85%, rgba(169, 198, 195, 0.25) 100%),
    linear-gradient(
      135deg,
      #faf9f8 0%,
      rgba(169, 198, 195, 0.1) 45%,
      rgba(253, 209, 115, 0.06) 100%
    );
  z-index: 0;
}

/* BANNER MOBILE - topo do hero até início da caixa de texto */
.hero-banner-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-banner-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28%;
    z-index: 2;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }

  .hero-banner-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
}

@media (max-width: 430px) {
  .hero-banner-mobile {
    height: 24%;
  }
}

/* CONTAINER DE IMAGEM - INVADE COMPOSIÇÃO */
.hero-image-container {
  position: absolute;
  width: 45%;
  height: 78%;
  right: 2%;
  top: 7%;
  z-index: 1;
  overflow: visible;
}

/* Responsivo Hero Image Container */
@media (max-width: 1280px) {
  .hero-image-container {
    width: 43%;
    height: 75%;
    right: 3%;
  }
}

@media (max-width: 1024px) {
  .hero-image-container {
    width: 50%;
    height: 72%;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-image-container {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    display: none;
  }
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

.hero-image-wrapper::before {
  display: none;
}

.hero-image-wrapper::after {
  display: none;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ELEMENTOS DECORATIVOS */
.hero-decoration {
  position: absolute;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: visible;
}

.hero-decoration img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* NUVEM - FUNDO COM PROFUNDIDADE */
.hero-cloud {
  width: 280px;
  height: 180px;
  z-index: 0;
  opacity: 0.9;
  filter: blur(2px);
  animation: floatCloud 12s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

/* Breakpoint 1024px (Desktop pequeno) */
@media (max-width: 1024px) {
  .hero-cloud {
    width: 240px;
    height: 150px;
  }
}

/* Breakpoint 768px (Tablet) */
@media (max-width: 768px) {
  .hero-cloud {
    width: 200px;
    height: 130px;
  }
}

/* Breakpoint 640px (Tablet vertical) */
@media (max-width: 640px) {
  .hero-cloud {
    width: 160px;
    height: 110px;
  }
}

/* Breakpoint 480px (Mobile pequeno) */
@media (max-width: 480px) {
  .hero-cloud {
    width: 120px;
    height: 85px;
  }
}

/* Breakpoint 360px (Mobile pequeno) */
@media (max-width: 360px) {
  .hero-headline {
    font-size: 1.9em;
  }

  .hero-subheadline {
    font-size: 0.9em;
  }

  .btn-hero {
    font-size: 0.85em;
    padding: 9px 16px;
  }

  .header .logo img {
    height: 44px;
  }

  .container {
    padding: 0 10px;
  }

  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.3em;
  }
}

/* Breakpoint 320px (Mobile muito pequeno) */
@media (max-width: 320px) {
  .hero-cloud {
    width: 100px;
    height: 70px;
  }

  .hero-headline {
    font-size: 1.6em;
  }

  .header {
    padding: 12px 8px;
  }

  .container {
    padding: 0 8px;
  }
}

.hero-cloud-left {
  top: 12%;
  left: 20%;
}

.hero-cloud-home-left {
  left: 5% !important;
}

.hero-cloud-center {
  top: 5%;
  left: 42%;
  transform: translateX(-50%);
  z-index: 5;
  animation: floatCloud 13s ease-in-out infinite;
}

.hero-cloud-home-center {
  opacity: 0.6 !important;
}

.hero-cloud-right {
  top: 22%;
  right: 10%;
  z-index: 3;
  opacity: 0.75;
  animation: floatCloud 14s ease-in-out infinite;
}

/* BALÃO - FLUTUANDO ESQUERDA */
.hero-balloon {
  width: 140px;
  height: 140px;
  bottom: 35%;
  left: -30px;
  z-index: 100;
  opacity: 0.88;
  animation: floatBalloon 5s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

/* Responsivo Balão */
@media (max-width: 1024px) {
  .hero-balloon {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 768px) {
  .hero-balloon {
    width: 60px;
    height: 60px;
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-balloon {
    display: none;
  }
}

/* MACACO - PENDULAR TOPO DIREITO */
.hero-monkey {
  width: 200px;
  height: 240px;
  top: -25px;
  right: 8%;
  z-index: 4;
  opacity: 1;
  transform-origin: top center;
  animation: swingMonkey 5s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Responsivo Macaco */
@media (max-width: 1024px) {
  .hero-monkey {
    width: 160px;
    height: 190px;
  }
}

@media (max-width: 768px) {
  .hero-monkey {
    width: 160px;
    height: 200px;
    top: -20px;
    right: 30px;
  }
}

@media (max-width: 480px) {
  .hero-monkey {
    width: 140px;
    height: 175px;
    top: -10px;
    right: 20px;
  }
}

/* MODAL MÉDICO */
.modal-medico {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal-medico.ativo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-medico-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-medico-conteudo {
  position: relative;
  z-index: 1001;
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modal-medico-fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-medico-fechar:hover {
  color: var(--dark);
  transform: scale(1.2);
}

.modal-medico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.modal-medico-foto {
  width: 100%;
}

.modal-medico-foto img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-medico-info h2 {
  font-size: 2em;
  color: var(--dark);
  margin: 0 0 10px 0;
  font-weight: 700;
}

.modal-medico-especialidade {
  color: var(--green);
  font-size: 1.1em;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.modal-medico-credencial {
  color: #999;
  font-size: 0.9em;
  margin: 0 0 20px 0;
}

.modal-medico-bio {
  color: #666;
  font-size: 1em;
  line-height: 1.8;
  margin: 20px 0;
}

.btn-agendar-modal {
  background: var(--green);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 32px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-agendar-modal:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .modal-medico-conteudo {
    padding: 30px;
    width: 95%;
  }

  .modal-medico-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modal-medico-info h2 {
    font-size: 1.5em;
  }
}

/* ANIMAÇÕES */
@keyframes floatCloud {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(25px) translateY(-8px);
  }
}

@keyframes floatBalloon {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.88;
  }
  25% {
    transform: translateY(-35px) translateX(8px);
  }
  50% {
    transform: translateY(-60px) translateX(-4px);
    opacity: 0.85;
  }
  75% {
    transform: translateY(-40px) translateX(6px);
  }
}

@keyframes swingMonkey {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1.5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-1.5deg);
  }
}

@keyframes pulseButton {
  0%, 100% {
    box-shadow:
      0 12px 35px rgba(169, 198, 195, 0.38),
      0 0 1px rgba(0, 0, 0, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow:
      0 12px 45px rgba(169, 198, 195, 0.55),
      0 0 20px rgba(169, 198, 195, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* ANIMAIS - ESCONDIDOS */
.hero-animal {
  display: none;
}

@keyframes floatOrganic {
  0%, 100% {
    opacity: 0.42;
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
  }
  25% {
    opacity: 0.40;
    transform: translateY(-14px) translateX(6px) rotate(1.5deg) scale(1.02);
  }
  50% {
    opacity: 0.45;
    transform: translateY(-22px) translateX(-4px) rotate(-1deg) scale(0.98);
  }
  75% {
    opacity: 0.41;
    transform: translateY(-12px) translateX(5px) rotate(0.8deg) scale(1.01);
  }
}

/* ONDA TRANSIÇÃO HERO */
.hero-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 160px;
  z-index: 20;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-wave svg.wave-primary {
  z-index: 2;
}

.hero-wave svg.wave-secondary {
  z-index: 1;
  top: 8px;
}

.hero-wave svg.wave-primary path {
  fill: #ffffff;
}

.hero-wave svg.wave-secondary path {
  fill: rgba(255, 255, 255, 0.5);
}

.wave-lion {
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: 170px;
  right: 29%;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
}

.wave-lion::after {
  content: '';
  position: absolute;
  bottom: -119px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 16px;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(5px);
  z-index: -1;
}

.wave-elephant {
  position: absolute;
  width: 230px;
  height: 230px;
  bottom: 60px;
  left: 15%;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
  .wave-lion {
    width: 100px;
    height: 100px;
    bottom: 50px;
  }

  .wave-lion::after {
    bottom: -65px !important;
  }

  .wave-elephant {
    width: 140px;
    height: 140px;
    bottom: 40px;
  }
}

@media (max-width: 480px) {
  .wave-lion {
    width: 80px;
    height: 80px;
    bottom: 60px;
    filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.15));
  }

  .wave-lion::after {
    bottom: -50px;
  }

  .wave-elephant {
    width: 110px;
    height: 110px;
    bottom: 50px;
  }
}

.wave-elephant img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.wave-elephant::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(5px);
  z-index: -1;
}

.wave-lion img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* CONTEÚDO TEXTUAL - FLUTUANDO NA CENA */
.hero-text-overlay {
  position: absolute;
  left: 80px;
  top: 40%;
  transform: translateY(-50%);
  width: 700px;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: calc(100% - 140px);
  box-sizing: border-box;
}

/* Responsivo Hero Text Overlay */
@media (max-width: 1280px) {
  .hero-text-overlay {
    left: 70px;
    width: 620px;
    max-width: calc(100% - 140px);
  }
}

@media (max-width: 1024px) {
  .hero-text-overlay {
    left: 50px;
    width: 520px;
    max-width: calc(100% - 100px);
  }
}

@media (max-width: 768px) {
  .hero-text-overlay {
    left: 20px;
    right: 20px;
    width: auto;
    top: 20%;
    transform: none;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 480px) {
  .hero-text-overlay {
    left: 15px;
    right: 15px;
    top: 15%;
    transform: none;
    width: auto;
    max-width: calc(100% - 30px);
  }
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  animation: fadeInUp 0.9s ease-out 0.2s both;
  background: transparent;
  padding: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-headline {
  font-size: 3.8em;
  line-height: 1.15;
  color: var(--dark);
  margin: 100px 0 40px 0;
  font-weight: 700;
  letter-spacing: -0.6px;
  text-align: left;
}

.hero-subheadline {
  font-size: 1.2em;
  line-height: 1.5;
  color: #777;
  margin: -20px 0 0 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-align: left;
}

/* Responsivo Hero Typography */
@media (max-width: 1280px) {
  .hero-headline {
    font-size: 2.8em;
  }

  .hero-subheadline {
    font-size: 1em;
  }
}

@media (max-width: 1024px) {
  .hero-headline {
    font-size: 2.2em;
  }

  .hero-subheadline {
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 1.5em;
    line-height: 1.2;
  }

  .hero-subheadline {
    font-size: 0.8em;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1em;
    line-height: 1;
  }

  .hero-subheadline {
    font-size: 0.65em;
    line-height: 1.2;
  }
}

/* Correção para telas de laptop (evita colisão de texto e imagem) */
@media (max-width: 1366px) and (min-width: 992px) {
  .hero-text-content {
    max-width: 50%;
    padding-right: 40px; /* Adiciona respiro à direita */
  }
  .hero-subheadline {
    max-width: 480px; /* Força a quebra de linha elegante */
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease-out 0.4s both;
}

@media (max-width: 1024px) {
  .hero-buttons {
    gap: 12px;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.btn-hero {
  padding: 18px 50px;
  border: none;
  border-radius: 32px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  text-decoration: none;
}

@media (max-width: 480px) {
  .btn-hero {
    padding: 10px 20px;
    font-size: 0.75em;
    width: 100%;
    text-align: center;
  }
}

.btn-hero.primary {
  background: linear-gradient(135deg, #b8d5d2 0%, #a9c6c3 100%);
  color: white;
  box-shadow:
    0 12px 35px rgba(169, 198, 195, 0.38),
    0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulseButton 2s ease-in-out infinite;
}

.btn-hero.primary:hover {
  background: linear-gradient(135deg, #a9c6c3 0%, #93a89e 100%);
  transform: translateY(-4px);
  box-shadow:
    0 18px 50px rgba(169, 198, 195, 0.5),
    0 0 1px rgba(0, 0, 0, 0.05);
}

.btn-hero.secondary {
  background: rgba(169, 198, 195, 0.08);
  color: var(--green);
  border: 2px solid rgba(169, 198, 195, 0.4);
  backdrop-filter: blur(4px);
}

.btn-hero.secondary:hover {
  background: rgba(169, 198, 195, 0.15);
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(169, 198, 195, 0.3);
}

.btn-hero:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.hero-especialidades {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 12px;
  animation: fadeInUp 0.9s ease-out 0.6s both;
}

.esp-pill:nth-child(1) { animation: fadeInUp 0.9s ease-out 0.65s both; }
.esp-pill:nth-child(2) { animation: fadeInUp 0.9s ease-out 0.70s both; }
.esp-pill:nth-child(3) { animation: fadeInUp 0.9s ease-out 0.75s both; }
.esp-pill:nth-child(4) { animation: fadeInUp 0.9s ease-out 0.80s both; }

.esp-pill {
  background: rgba(255, 255, 255, 0.6);
  color: #555;
  padding: 9px 17px;
  border-radius: 24px;
  font-size: 0.92em;
  font-weight: 500;
  border: 1px solid rgba(169, 198, 195, 0.35);
  font-family: 'Poppins', sans-serif;
  transition: all 0.35s ease;
  cursor: default;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.esp-pill:hover {
  background: rgba(169, 198, 195, 0.16);
  border-color: rgba(169, 198, 195, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(169, 198, 195, 0.2);
}

/* SEÇÃO CUIDADO */
.cuidado-section {
  position: relative;
  padding: 120px 60px 200px 60px;
  margin-bottom: 100px;
  overflow: hidden;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .cuidado-section {
    padding: 60px 20px 100px 20px;
    margin-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .cuidado-section {
    padding: 40px 16px 60px 16px;
    margin-bottom: 40px;
  }
}

.cuidado-blob-1 {
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--green);
  top: 5%;
  left: -8%;
  border-radius: 45% 52% 48% 50% / 48% 50% 45% 52%;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.cuidado-blob-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--yellow);
  bottom: 10%;
  right: -5%;
  border-radius: 40% 60% 35% 65% / 60% 35% 65% 35%;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

/* CARROSSEL DE ESPECIALIDADES */
.cuidado-carrossel-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 60px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

@media (max-width: 768px) {
  .cuidado-carrossel-container {
    padding: 0 20px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .cuidado-carrossel-container {
    padding: 0 12px;
    gap: 8px;
  }
}

.cuidado-carrossel-viewport {
  flex: 1;
  overflow-x: scroll;
  overflow-y: visible;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-height: 120px;
  display: block;
  padding-top: 25px;
  padding-bottom: 25px;
  contain: none;
}

.cuidado-carrossel-viewport::-webkit-scrollbar {
  display: none;
}

.cuidado-carrossel {
  display: flex;
  gap: 15px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  width: fit-content;
  min-width: 100%;
}

.carrossel-item {
  background: var(--green);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.95em;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

@media (max-width: 768px) {
  .carrossel-item {
    padding: 10px 18px;
    font-size: 0.88em;
  }
}

@media (max-width: 480px) {
  .carrossel-item {
    padding: 8px 14px;
    font-size: 0.8em;
    border-radius: 20px;
  }
}

.carrossel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carrossel-item:nth-child(1),
.carrossel-item:nth-child(5) {
  background: var(--pink);
}

.carrossel-item:nth-child(2),
.carrossel-item:nth-child(6) {
  background: var(--green);
}

.carrossel-item:nth-child(3),
.carrossel-item:nth-child(7) {
  background: var(--blue);
}

.carrossel-item:nth-child(4),
.carrossel-item:nth-child(8),
.carrossel-item:nth-child(12),
.carrossel-item:nth-child(16) {
  background: var(--yellow);
  color: var(--dark);
}

.carrossel-item:nth-child(9),
.carrossel-item:nth-child(13) {
  background: var(--pink);
}

.carrossel-item:nth-child(10),
.carrossel-item:nth-child(14) {
  background: var(--green);
}

.carrossel-item:nth-child(11),
.carrossel-item:nth-child(15) {
  background: var(--blue);
}

.carrossel-arrow {
  background: var(--green);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  transform: translateY(30px);
}

@media (max-width: 480px) {
  .carrossel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.2em;
    transform: translateY(20px);
  }
}

.carrossel-arrow:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(30px) scale(1.05);
}

.cuidado-grid {
  display: flex;
  gap: 160px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

.cuidado-image {
  flex: 0 0 580px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.cuidado-image img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsivo Cuidado (CRÍTICO) */
@media (max-width: 1024px) {
  .cuidado-grid {
    gap: 80px;
  }

  .cuidado-image {
    flex: 0 0 100%;
  }

  .cuidado-image img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .cuidado-section {
    padding: 60px 20px 100px 20px;
  }

  .cuidado-grid {
    gap: 40px;
    flex-direction: column;
  }

  .cuidado-image {
    flex: 0 0 100%;
    margin-top: 20px;
  }

  .cuidado-image img {
    height: 240px;
  }

  .cuidado-text h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .cuidado-grid {
    gap: 20px;
  }

  .cuidado-image img {
    height: 200px;
  }

  .cuidado-text h2 {
    font-size: 1.5em;
    padding: 12px 16px;
  }

  .cuidado-text p {
    font-size: 0.95em;
  }
}

.cuidado-image img:hover {
  transform: scale(1.02);
}

.cuidado-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  margin-top: 40px;
}

.cuidado-text h2 {
  font-size: 2.2em;
  line-height: 1.2;
  color: white;
  margin: 0;
  font-weight: 700;
  border: none;
  padding: 16px 20px;
  border-radius: 0;
  display: inline-block;
  background-color: var(--green);
}

.cuidado-text p {
  font-size: 1.05em;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .cuidado-text h2 {
    font-size: 1.6em;
    padding: 12px 16px;
  }

  .cuidado-text p {
    font-size: 0.95em;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .cuidado-text h2 {
    font-size: 1.3em;
    padding: 10px 14px;
  }

  .cuidado-text p {
    font-size: 0.85em;
    line-height: 1.5;
  }
}

.cuidado-text p .destaque {
  color: var(--green);
  font-weight: 500;
}

.btn-cuidado {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 14px 36px;
  border-radius: 32px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-cuidado:hover {
  background: var(--green);
  color: white;
  transform: translateY(-4px);
}

/* SEÇÃO STATS */
.stats-section {
  padding: 80px 60px;
  background: white url('BANNER01.png') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  border-top: none;
  box-shadow: none;
  margin-top: -100px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 16px;
    background-attachment: scroll;
  }
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 0;
}

.stats-container {
  display: flex;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.stat-item h3 {
  font-size: 4em;
  color: var(--yellow);
  margin: 0;
  font-weight: 700;
  line-height: 1;
}

/* Responsivo Stats */
@media (max-width: 1024px) {
  .stats-container {
    gap: 60px;
  }

  .stat-item h3 {
    font-size: 3em;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 20px;
  }

  .stats-container {
    gap: 40px;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 calc(50% - 20px);
  }

  .stat-item h3 {
    font-size: 2.2em;
  }

  .stat-icon {
    width: 45px;
    height: 45px;
  }

  .stat-item p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .stats-container {
    gap: 20px;
    padding: 0 10px;
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .stat-item h3 {
    font-size: 1.8em;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }
}

.stat-item p {
  font-size: 1em;
  color: var(--yellow);
  margin: 0;
  font-weight: 500;
}



.btn-esp {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-esp.yellow {
  background: var(--yellow);
  color: var(--dark);
}

.btn-esp.green {
  background: var(--green);
  color: var(--dark);
}

.btn-esp.pink {
  background: var(--pink);
  color: var(--dark);
}

.btn-esp.blue {
  background: var(--blue);
  color: var(--white);
}

.btn-esp:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ACCORDION - ESPECIALIDADES */
.especialidades-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.especialidades-section h2 {
  text-align: center;
  color: var(--yellow);
  margin-bottom: 40px;
  font-size: 2em;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border: 2px solid var(--yellow);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-title {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  transition: all 0.3s;
  border-bottom: 2px solid var(--yellow);
}

.accordion-title:hover {
  background: var(--green);
  color: var(--white);
}

.accordion-title:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.accordion-item.active .accordion-title {
  background: var(--green);
  color: var(--white);
  border-bottom-color: var(--green);
}

.accordion-content {
  padding: 20px;
  background: rgba(244, 179, 184, 0.1);
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* TABS - CORPO CLÍNICO */
/* CORPO CLÍNICO */
.corpo-clinico-section {
  background: linear-gradient(135deg, #f8fafb 0%, rgba(169, 198, 195, 0.06) 50%, rgba(107, 127, 163, 0.04) 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.corpo-clinico-section h1,
.corpo-clinico-section h2 {
  text-align: center;
  color: var(--dark);
  font-size: 2.4em;
  font-weight: 700;
  letter-spacing: -0.5px;
  padding: 100px 60px 20px 60px;
  margin: 0;
}

.corpo-clinico-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px 200px 60px;
  overflow: visible;
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.medicos-carrossel-container {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: visible;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: center;
  max-width: 1400px;
}

.medicos-carrossel-viewport {
  flex: 1;
  max-width: 100%;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  contain: none;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
}

.medicos-carrossel-viewport::-webkit-scrollbar {
  display: none;
}

.medicos-grid {
  display: flex;
  gap: 32px;
  width: fit-content;
  padding-left: 0;
  padding-right: 0;
}

.medico-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  height: 600px;
  flex: 0 0 calc(22% - 22px);
  min-width: calc(22% - 22px);
}

.medico-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.medico-foto {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f2f5 0%, #e8eef5 100%);
  position: relative;
}

.medico-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 100%;
}

@media (max-width: 480px) {
  .medico-foto {
    height: 200px;
  }
}

.medico-card:hover .medico-foto img {
  transform: scale(1.04);
}

.medico-conteudo {
  padding: 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.medico-conteudo h3 {
  color: var(--dark);
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  letter-spacing: 2.5px;
}

.medico-conteudo .especialidade {
  color: var(--green);
  font-size: 0.93em;
  font-weight: 600;
  margin: 4px 0 0 0;
  letter-spacing: 0.3px;
}

.medico-conteudo .credencial {
  color: #aaa;
  font-size: 0.82em;
  margin: 8px 0 0 0;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.btn-saiba-mais {
  background: var(--green);
  color: white;
  border: 2px solid var(--green);
  padding: 11px 28px;
  border-radius: 26px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.92em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 16px;
  width: fit-content;
  letter-spacing: 0.3px;
}

.btn-saiba-mais:hover {
  background: white;
  color: var(--green);
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(169, 198, 195, 0.3);
}

.medicos-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.medicos-arrow:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .corpo-clinico-section h1,
  .corpo-clinico-section h2 {
    font-size: 2.1em;
    padding: 80px 40px 15px 40px;
  }

  .corpo-clinico-section .container {
    padding: 0 40px 150px 40px;
  }

  .medicos-carrossel-container {
    gap: 16px;
  }

  .medico-card {
    flex: 0 0 calc(38% - 16px);
    min-width: calc(38% - 16px);
    height: 520px;
  }

  .medicos-grid {
    gap: 32px;
  }

  .medico-foto {
    height: 340px;
  }

  .medico-conteudo {
    padding: 32px 28px;
  }

  .medicos-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .corpo-clinico-section h1,
  .corpo-clinico-section h2 {
    font-size: 1.8em;
    padding: 60px 20px 15px 20px;
  }

  .corpo-clinico-section .container {
    padding: 0 20px 120px 20px;
  }

  .medicos-carrossel-container {
    position: relative;
    gap: 0;
  }

  .medicos-carrossel-viewport {
    flex: 1;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .medicos-grid {
    --card-width: clamp(270px, 70vw, 320px);
    display: flex;
    gap: 24px;
    padding-inline: calc((100vw - var(--card-width)) / 2 + 450px);
    width: max-content;
    box-sizing: border-box;
  }

  .medico-card {
    flex: 0 0 var(--card-width);
    min-width: var(--card-width);
    max-width: var(--card-width);
    height: 450px;
    scroll-snap-align: center;
  }

  .medico-foto {
    height: 250px;
  }

  .medico-conteudo {
    padding: 20px 18px;
    gap: 10px;
  }

  .medico-conteudo h3 {
    font-size: 1em;
  }

  .medico-conteudo .especialidade {
    font-size: 0.85em;
  }

  .btn-saiba-mais {
    font-size: 0.85em;
    padding: 8px 20px;
    margin-top: 8px;
  }

  .medicos-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 18px;
    z-index: 10;
  }

  .medicos-prev {
    left: 8px;
  }

  .medicos-next {
    right: 8px;
  }
}

/* Responsivo Médico Card 480px */
@media (max-width: 480px) {
  .corpo-clinico-section h1,
  .corpo-clinico-section h2 {
    font-size: 1.6em;
    padding: 40px 15px 10px 15px;
  }

  .corpo-clinico-section .container {
    padding: 0 15px 100px 15px;
  }

  .medicos-carrossel-container {
    position: relative;
    gap: 0;
  }

  .medicos-carrossel-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-inline: 0;
    scroll-padding-inline: 24px;
  }

  .medicos-grid {
    --card-width: clamp(250px, 72vw, 300px);
    display: flex;
    gap: 16px;
    padding-inline: calc((100vw - var(--card-width)) / 2 + 450px);
    width: max-content;
    box-sizing: border-box;
  }

  .medico-card {
    flex: 0 0 var(--card-width);
    min-width: var(--card-width);
    max-width: var(--card-width);
    height: 380px;
    scroll-snap-align: center;
  }

  .medico-foto {
    height: 200px;
  }

  .medico-conteudo {
    padding: 16px 14px;
    gap: 8px;
  }

  .medico-conteudo h3 {
    font-size: 0.95em;
  }

  .medico-conteudo .especialidade {
    font-size: 0.8em;
  }

  .btn-saiba-mais {
    font-size: 0.8em;
    padding: 6px 16px;
  }

  .medicos-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 16px;
    z-index: 10;
  }

  .medicos-prev {
    left: 6px;
  }

  .medicos-next {
    right: 6px;
  }
}

/* SOBRE NÓS */
.sobre-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.sobre-content h2 {
  color: var(--dark);
  font-size: 2em;
  margin-bottom: 20px;
}

.sobre-content p {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 30px;
}

.sobre-stats {
  display: flex;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat h4 {
  color: var(--yellow);
  font-size: 2.5em;
  margin-bottom: 10px;
}

.stat p {
  color: var(--dark);
  font-weight: 600;
}

.sobre-image {
  flex: 1;
}

.sobre-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* BLOG */
/* BLOG - EDITORIAL PREMIUM */
.blog-section {
  padding: 120px 20px;
  background: #e8f1f8;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 60px 16px;
  }
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 5%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(169, 198, 195, 0.08) 0%, rgba(169, 198, 195, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.blog-section::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(253, 209, 115, 0.06) 0%, rgba(253, 209, 115, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.blog-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 80px;
  font-size: 2.6em;
  font-weight: 700;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .blog-section h2 {
    font-size: 2em;
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .blog-section h2 {
    font-size: 1.6em;
    margin-bottom: 40px;
  }
}

.blog-editorial {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ARTIGO DESTAQUE EDITORIAL */
.blog-featured-editorial {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .blog-featured-editorial {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .blog-featured-editorial {
    gap: 20px;
    margin-bottom: 40px;
  }
}

.blog-featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.blog-featured-image img:first-child {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

.blog-featured-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding: 0 4px;
}

.blog-featured-thumbnails img {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.blog-featured-thumbnails img:hover {
  opacity: 1;
  border-color: var(--green);
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-badge {
  display: inline-block;
  background: rgba(169, 198, 195, 0.15);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

.blog-featured-editorial h3 {
  color: var(--dark);
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  max-width: 400px;
}

.blog-featured-editorial p {
  color: #6a6a6a;
  line-height: 1.65;
  font-size: 0.95em;
  max-width: 320px;
}

.btn-read-more {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: fit-content;
  letter-spacing: 0.3px;
}

.btn-read-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(169, 198, 195, 0.2);
  background: var(--green);
}

/* GRID PEQUENO - CARDS MENORES */
.blog-grid-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-post-small {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-post-small:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(169, 198, 195, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.blog-post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-post-small h4 {
  color: var(--dark);
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin: 0;
}

.blog-post-small p {
  color: #6a6a6a;
  line-height: 1.55;
  font-size: 0.85em;
  margin: 0;
}

.blog-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85em;
  margin-top: auto;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--yellow);
}

/* Responsivo Blog Grid Small */
@media (max-width: 1024px) {
  .blog-grid-small {
    gap: 32px;
  }

  .blog-post-image {
    height: 180px;
  }

  .blog-post-content {
    padding: 24px;
  }

  .blog-post-small h4 {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .blog-grid-small {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-post-image {
    height: 200px;
  }

  .blog-post-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .blog-grid-small {
    gap: 16px;
  }

  .blog-post-image {
    height: 160px;
  }

  .blog-post-content {
    padding: 16px;
    gap: 10px;
  }

  .blog-post-small h4 {
    font-size: 0.95em;
  }

  .blog-post-small p {
    font-size: 0.8em;
  }
}

/* VALORES */
.valores-section {
  padding: 120px 60px;
  background: #afd797;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.valores-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(169, 198, 195, 0.12) 0%, rgba(169, 198, 195, 0.02) 100%);
  top: -80px;
  right: -100px;
  border-radius: 45% 55% 52% 48%;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.valores-section::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 70% 70%, rgba(253, 209, 115, 0.1) 0%, rgba(253, 209, 115, 0.01) 100%);
  bottom: -100px;
  left: -80px;
  border-radius: 40% 60% 68% 32%;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

.valores-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 60px;
  font-size: 2.6em;
  font-weight: 700;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}



.valor-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  padding: 40px 32px;
  border-radius: 28px;
  text-align: center;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02);
  border: none;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 240px;
}

.valor-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 20px 50px rgba(169, 198, 195, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.03);
}


.valor-card h3 {
  color: var(--dark);
  margin: 0;
  font-size: 2.3em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.25px;
  text-align: center;
}

.valor-card p {
  color: #6a6a6a;
  line-height: 1.4;
  font-size: 0.85em;
  margin: 12px auto 0;
  padding: 0;
  letter-spacing: 0.1px;
  max-width: 200px;
  text-align: center;
}

@media (max-width: 1024px) {
  .valores-section {
    padding: 100px 30px;
  }

  .valores-grid {
    gap: 32px;
  }

  .valor-card {
    padding: 36px 28px;
    min-height: 230px;
    gap: 14px;
  }


  .valor-card h3 {
    font-size: 1.1em;
  }

  .valor-card p {
    font-size: 0.84em;
  }
}

@media (max-width: 768px) {
  .valores-section {
    padding: 80px 20px;
  }

  .valores-section h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .valores-grid {
    gap: 28px;
  }

  .valor-card {
    padding: 32px 24px;
    min-height: 220px;
    gap: 12px;
  }

  .valor-card h3 {
    font-size: 1.05em;
  }

  .valor-card p {
    font-size: 0.82em;
  }
}

/* Responsivo Valor Card 480px */
@media (max-width: 480px) {
  .valores-section {
    padding: 60px 15px;
  }

  .valores-section h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .valores-grid {
    gap: 16px;
  }

  .valor-card {
    padding: 24px 16px;
    min-height: 200px;
    gap: 8px;
  }

  .valor-card h3 {
    font-size: 1em;
  }

  .valor-card p {
    font-size: 0.8em;
  }
}

/* INSTAGRAM */
.instagram-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f0f8f5 0%, #ffffff 100%);
  width: 100%;
  box-sizing: border-box;
}

.instagram-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.instagram-section h2 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 2.8rem;
  text-align: center;
}

.instagram-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #afd797;
  font-weight: 600;
  margin-bottom: 50px;
}

.instagram-profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 32px auto;
  padding: 20px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  max-width: 520px;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.instagram-profile-header:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.instagram-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8e8e8;
  flex-shrink: 0;
}

.instagram-profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.instagram-profile-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.instagram-profile-handle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
}

.instagram-follow-btn {
  margin-left: auto;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.instagram-profile-header:hover .instagram-follow-btn {
  background: var(--green);
}

.instagram-feed {
  width: 100%;
  box-sizing: border-box;
}

.instagram-feed > * {
  width: 100% !important;
  max-width: 100% !important;
}

.commonninja_component {
  width: 100% !important;
  display: block !important;
}

.instagram-placeholder {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Responsivo Instagram */
@media (max-width: 1024px) {
  .instagram-feed {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 60px 20px;
  }

  .instagram-section h2 {
    font-size: 2rem;
  }

  .instagram-feed {
    width: 100% !important;
  }
}

/* Botão Instagram */
.instagram-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.btn-instagram {
  display: inline-block;
  background: linear-gradient(135deg, #afd797 0%, #a9c6c3 100%);
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(175, 215, 151, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(164, 198, 195, 0.5);
}

@media (max-width: 768px) {
  .instagram-button-wrapper {
    margin-top: 30px;
  }

  .btn-instagram {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

/* TESTIMONIAIS */
.testimonials-section {
  padding: 60px 20px;
  background: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 40px;
  font-size: 2em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--yellow);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial p {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 15px;
}

.testimonial .author {
  color: var(--green);
  font-weight: bold;
  font-size: 0.9em;
}

/* LOCALIZAÇÃO PREMIUM */
.localizacao-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, rgba(169,198,195,0.05) 0%, rgba(255,255,255,1) 40%, rgba(253,209,115,0.03) 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.cachorro-mapa {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 80px;
  left: 15%;
  pointer-events: none;
  z-index: 2;
}

.cachorro-mapa img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.localizacao-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeUp 0.8s ease-out;
}

.localizacao-header h1 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* Responsivo Localização Typography */
@media (max-width: 1024px) {
  .localizacao-header h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .localizacao-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .localizacao-header h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .localizacao-subtitle {
    font-size: 0.9rem;
  }
}

.localizacao-subtitle {
  font-size: 1.1rem;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 500px;
  margin: 0 auto;
}

.localizacao-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.localizacao-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}

.localizacao-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-and-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-premium {
  width: 100%;
  height: 500px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  animation: fadeUp 0.8s ease-out 0.2s both;
  max-width: 100%;
}

/* Responsivo Localização - Mapa */
@media (max-width: 1024px) {
  .map-premium {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .localizacao-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-premium {
    height: 300px;
  }

  .cachorro-mapa {
    display: none;
  }
}

@media (max-width: 480px) {
  .map-premium {
    height: 220px;
  }
}

.cta-under-map {
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.cta-under-map .btn-agendar-premium {
  width: 100%;
  text-align: center;
  padding: 18px 32px;
}

.map-premium iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* LOCALIZAÇÃO - INDEX.HTML - NOVO LAYOUT PREMIUM */
.localizacao-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.localizacao-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeUp 0.8s ease-out;
}

.localizacao-header h2 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.localizacao-header p {
  font-size: 1.1rem;
  color: #888;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.localizacao-mapa {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  animation: fadeUp 0.8s ease-out 0.2s both;
  max-width: 100%;
}

.localizacao-mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .localizacao-mapa {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .localizacao-mapa {
    height: 220px;
  }
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.info-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: slideInRight 0.6s ease-out backwards;
}

.info-card:nth-child(1) { animation-delay: 0.3s; }
.info-card:nth-child(2) { animation-delay: 0.4s; }
.info-card:nth-child(3) { animation-delay: 0.5s; }

.info-card:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.info-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-card-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
  margin: 0;
}

.info-card-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.info-card-content p a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-card-content p a:hover {
  color: var(--green);
}

.localizacao-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 12px 32px rgba(80, 180, 150, 0.2);
  animation: slideInRight 0.6s ease-out 0.6s backwards;
  margin-top: 8px;
}

.localizacao-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(253, 100, 179, 0.3);
}

/* Responsivo Localização Index */
@media (max-width: 1024px) {
  .localizacao-mapa {
    height: 100%;
    min-height: 420px;
  }

  .localizacao-header h2 {
    font-size: 2.4rem;
  }

  .localizacao-grid {
    gap: 40px;
  }

  .info-card {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .localizacao-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .localizacao-mapa {
    height: 350px;
    min-height: auto;
  }

  .localizacao-header h2 {
    font-size: 2rem;
  }

  .localizacao-header p {
    font-size: 1rem;
  }

  .info-card {
    padding: 20px 16px;
  }

  .info-card-icon {
    font-size: 1.8rem;
  }

  .info-card-content h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .localizacao-mapa {
    height: 280px;
    min-height: auto;
  }

  .localizacao-header h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .localizacao-header p {
    font-size: 0.95rem;
  }

  .localizacao-grid {
    gap: 20px;
  }

  .info-card {
    padding: 16px 12px;
    gap: 12px;
  }

  .info-card-icon {
    font-size: 1.6rem;
  }

  .info-card-content h3 {
    font-size: 0.95rem;
  }

  .info-card-content p {
    font-size: 0.9rem;
  }

  .localizacao-cta {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

.endereco-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  gap: 24px;
  animation: fadeUp 0.8s ease-out 0.3s both;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.endereco-card:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-6px);
}

.endereco-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.endereco-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.endereco-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.horario-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 20px;
  animation: fadeUp 0.8s ease-out 0.35s both;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.horario-card:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-6px);
}

.horario-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.horario-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.fraldario-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  gap: 24px;
  animation: fadeUp 0.8s ease-out 0.4s both;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fraldario-card:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-6px);
}

.fraldario-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.fraldario-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.fraldario-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.estacionamento-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  gap: 24px;
  animation: fadeUp 0.8s ease-out 0.45s both;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.estacionamento-card:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-6px);
}

.estacionamento-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.estacionamento-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.estacionamento-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.horarios-header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.localizacao-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  animation: fadeUp 0.8s ease-out 0.5s both;
  margin-top: 40px;
}

.info-linha {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.info-icon {
  font-size: 1.8rem;
  margin-top: 4px;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-label {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.info-destaque {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.info-destaque:hover {
  color: var(--blue);
  transform: translateX(4px);
}

.horarios-header-slim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4CAF50;
  animation: statusPulse 2s infinite;
}

.status-dot.fechado {
  background: #f44336;
  animation: none;
}

.status-text-slim {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.horarios-detalhes-slim {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.horario-dia {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
}

.horario-dia span:first-child {
  font-weight: 500;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn-agendar-premium {
  background: linear-gradient(135deg, var(--green) 0%, #95b8b5 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 12px 30px rgba(169, 198, 195, 0.25);
  letter-spacing: 0.3px;
  display: inline-block;
  white-space: nowrap;
}

.btn-agendar-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(169, 198, 195, 0.35);
}

.telefone-info {
  animation: fadeUp 0.8s ease-out 0.5s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Responsivo Mapa - Legacy Section */
@media (max-width: 768px) {
  .map-section {
    padding: 60px 20px;
  }

  .map-section h1,
  .map-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-iframe {
    height: 350px;
  }

  .address-info {
    gap: 24px;
  }

  .info-item {
    padding: 20px;
  }
}

/* CONTATO */
.contact-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, var(--green) 0%, var(--blue) 100%);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
  font-size: 2em;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.btn-send {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-send:hover {
  background: white;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.contact-info p {
  margin: 15px 0;
  font-size: 1.1em;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 20px;
  }

  .header .menu {
    margin-left: 0;
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    min-height: 750px;
    height: 100vh;
  }

  .hero-image-container {
    width: 75%;
    height: 60%;
    right: 50%;
    transform: translateX(50%);
    top: 20%;
  }

  .hero-image-wrapper {
    border-radius: 50% 48% 52% 46% / 48% 52% 46% 54%;
  }

  .hero-text-overlay {
    left: 20px;
    top: 50%;
    width: calc(100% - 40px);
    transform: translateY(-50%);
  }

  .hero-text-content {
    gap: 18px;
  }

  .hero-headline {
    font-size: 2.2em;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }

  .hero-subheadline {
    font-size: 1em;
    line-height: 1.6;
  }

  .hero-buttons {
    gap: 12px;
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    padding: 14px 28px;
    font-size: 0.95em;
    text-align: center;
  }

  .hero-animal-4 {
    width: 160px;
    bottom: 40px;
    left: -80px;
  }

  .hero-animal-2 {
    width: 140px;
    bottom: 50px;
    left: 10px;
  }

  .hero-animal-3 {
    width: 130px;
    bottom: 30px;
    right: 40px;
  }

  .hero-animal-5 {
    width: 110px;
    top: 25%;
    right: 30%;
  }

  .hero-animal-1 {
    width: 100px;
    top: 10px;
    right: 15%;
  }

  .esp-pill {
    font-size: 0.85em;
    padding: 8px 13px;
  }

  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .tab-button {
    white-space: nowrap;
  }

  .sobre-section {
    flex-direction: column;
  }

  .blog-featured {
    flex-direction: column;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    grid-template-columns: 1fr;
  }
}

/* WAVE DIVIDER - TRANSIÇÃO ORGÂNICA */
.wave-divider {
  position: relative;
  width: 100%;
  height: 400px !important;
  line-height: 0;
  overflow: visible;
  pointer-events: none;
  margin-top: 150px;
  margin-bottom: -100px;
  contain: layout style;
  will-change: auto;
}

/* Responsivo Wave Divider */
@media (max-width: 1024px) {
  .wave-divider {
    height: 300px !important;
    margin-top: 120px;
    margin-bottom: -80px;
  }
}

@media (max-width: 768px) {
  .wave-divider {
    height: 250px !important;
    margin-top: 100px;
    margin-bottom: -60px;
  }
}

@media (max-width: 480px) {
  .wave-divider {
    height: 200px !important;
    margin-top: 80px;
    margin-bottom: -40px;
  }

  .wave-galinha {
    width: 110px !important;
    height: 110px !important;
    bottom: 80px !important;
  }

  .galinha-sombra {
    width: 65px !important;
    height: 15px !important;
    bottom: 68px !important;
    transform: translateX(15px) !important;
  }

  .moita-esquerda {
    width: 220px !important;
    height: 220px !important;
    bottom: 60px !important;
  }
}

.grass-dots-green-dark {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
}

.grass-dots-green-light {
  position: absolute;
  bottom: -250px;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
}

.grass-dots-brown {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
}

.corpo-clinico-section .pedra-wave {
  position: absolute;
  height: 45px;
  pointer-events: none;
  width: 200px;
  z-index: 10;
}

.corpo-clinico-section .pedra-esquerda {
  left: 60px;
  top: 50%;
  transform: rotate(8deg) translateY(-50%);
}

.corpo-clinico-section .pedra-wave:not(.pedra-esquerda) {
  right: 60px;
  top: 45%;
  transform: translateY(-50%);
}

/* Responsivo Pedra Wave */
@media (max-width: 1440px) {
  .corpo-clinico-section .pedra-esquerda {
    left: 50px;
  }

  .corpo-clinico-section .pedra-wave:not(.pedra-esquerda) {
    right: 50px;
  }
}

@media (max-width: 1024px) {
  .corpo-clinico-section .pedra-esquerda {
    left: 40px;
    width: 160px;
    height: 36px;
  }

  .corpo-clinico-section .pedra-wave:not(.pedra-esquerda) {
    right: 40px;
    width: 160px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .corpo-clinico-section .pedra-esquerda {
    left: 20px;
    width: 120px;
    height: 28px;
  }

  .corpo-clinico-section .pedra-wave:not(.pedra-esquerda) {
    right: 20px;
    width: 120px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .corpo-clinico-section .pedra-esquerda {
    display: none;
  }

  .corpo-clinico-section .pedra-wave:not(.pedra-esquerda) {
    display: none;
  }
}

@media (max-width: 768px) {
  .pedra-esquerda {
    left: 8%;
    bottom: 70px;
  }

  .pedra-wave:not(.pedra-esquerda) {
    right: 8%;
  }
}

@media (max-width: 480px) {
  .pedra-esquerda {
    display: none;
  }

  .pedra-wave:not(.pedra-esquerda) {
    display: none;
  }
}

.pedra-wave::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 12px;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(5px);
  z-index: 1;
}

.pedra-wave img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  position: relative;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.wave-divider path {
  fill: #afd797;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Aproximando a wave e animações dos cards na seção Corpo Clínico */
.corpo-clinico-section .wave-divider {
  margin-top: -80px !important;
}

@media (max-width: 1024px) {
  .corpo-clinico-section .wave-divider {
    margin-top: -60px !important;
  }
}

@media (max-width: 768px) {
  .corpo-clinico-section .wave-divider {
    margin-top: -40px !important;
  }
}

@media (max-width: 480px) {
  .corpo-clinico-section .wave-divider {
    margin-top: -20px !important;
  }
}

.footer-wave-divider {
  background: #f8fbfa;
}

.footer-wave-divider path {
  fill: #1a3a2a;
}

.footer .zebra-footer-wave {
  position: absolute;
  width: 180px;
  height: 180px;
  right: 20px;
  bottom: auto;
  top: -300px;
  pointer-events: none;
  z-index: 999999;
  transform: rotate(10deg);
}

.footer .zebra-footer-wave img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsivo Zebra Footer */
@media (max-width: 1440px) {
  .footer .zebra-footer-wave {
    right: 20px;
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 1024px) {
  .footer .zebra-footer-wave {
    right: 15px;
    width: 140px;
    height: 140px;
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .footer .zebra-footer-wave {
    right: 10px;
    width: 120px;
    height: 120px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .footer .zebra-footer-wave {
    right: 8px;
    width: 90px;
    height: 90px;
    bottom: auto;
    top: -190px;
  }
}

.wave-galinha {
  position: absolute;
  width: 180px;
  height: 180px;
  left: 8%;
  bottom: 135px;
  pointer-events: none;
  z-index: 2;
  animation: galhaPulante 40s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@keyframes sombraPulante {
  /* Pulo 1 */
  0%, 4.4% {
    left: 8%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  2.2% {
    left: 9.25%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 2 */
  6.6%, 8.8% {
    left: 10.5%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  7.7% {
    left: 11.75%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 3 */
  11%, 13.2% {
    left: 13%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  12.1% {
    left: 14.25%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 4 */
  15.4%, 17.6% {
    left: 15.5%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  16.5% {
    left: 16.75%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 5 */
  19.8%, 22% {
    left: 18%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  20.9% {
    left: 19.25%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 6 */
  24.2%, 26.4% {
    left: 20.5%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  25.3% {
    left: 21.75%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 7 */
  28.6%, 30.8% {
    left: 23%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  29.7% {
    left: 24.25%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pausa */
  35%, 50% {
    left: 35.5%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }

  /* Pulo 8 */
  52.2%, 54.4% {
    left: 73%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  53.3% {
    left: 74.25%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 9 */
  56.6%, 58.8% {
    left: 75.5%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  57.7% {
    left: 76.75%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 10 */
  61%, 63.2% {
    left: 78%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  62.1% {
    left: 79.25%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 11 */
  65.4%, 67.6% {
    left: 80.5%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  66.5% {
    left: 81.75%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 12 */
  69.8%, 72% {
    left: 83%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  70.9% {
    left: 84.25%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 13 */
  74.2%, 76.4% {
    left: 85.5%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  75.3% {
    left: 86.75%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pulo 14 */
  78.6%, 80.8% {
    left: 88%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
  79.7% {
    left: 89.25%;
    opacity: 0.4;
    transform: translateX(calc(-50% + 90px)) scale(0.8);
  }

  /* Pausa final */
  85%, 100% {
    left: 8%;
    opacity: 1;
    transform: translateX(calc(-50% + 90px)) scale(1);
  }
}

@keyframes galhaPulante {
  0% { left: 8%; transform: scaleX(1) translateY(0); }
  1% { transform: scaleX(1) translateY(-20px); }
  2% { left: 10.5%; transform: scaleX(1) translateY(0); }
  3% { transform: scaleX(1) translateY(-20px); }
  4% { left: 13%; transform: scaleX(1) translateY(0); }
  5% { transform: scaleX(1) translateY(-20px); }
  6% { left: 15.5%; transform: scaleX(1) translateY(0); }
  7% { transform: scaleX(1) translateY(-20px); }
  8% { left: 18%; transform: scaleX(1) translateY(0); }
  9% { transform: scaleX(1) translateY(-20px); }
  10% { left: 20.5%; transform: scaleX(1) translateY(0); }
  11% { transform: scaleX(1) translateY(-20px); }
  12% { left: 23%; transform: scaleX(1) translateY(0); }
  13% { transform: scaleX(1) translateY(-20px); }
  14% { left: 25.5%; transform: scaleX(1) translateY(0); }
  15% { transform: scaleX(1) translateY(-20px); }
  16% { left: 28%; transform: scaleX(1) translateY(0); }
  17% { transform: scaleX(1) translateY(-20px); }
  18% { left: 30.5%; transform: scaleX(1) translateY(0); }
  19% { transform: scaleX(1) translateY(-20px); }
  20% { left: 33%; transform: scaleX(1) translateY(0); }
  21% { transform: scaleX(1) translateY(-20px); }
  22% { left: 35.5%; transform: scaleX(1) translateY(0); }
  23% { transform: scaleX(1) translateY(-20px); }
  24% { left: 38%; transform: scaleX(1) translateY(0); }
  25% { transform: scaleX(1) translateY(-20px); }
  26% { left: 40.5%; transform: scaleX(1) translateY(0); }
  27% { transform: scaleX(1) translateY(-20px); }
  28% { left: 43%; transform: scaleX(1) translateY(0); }
  29% { transform: scaleX(1) translateY(-20px); }
  30% { left: 45.5%; transform: scaleX(1) translateY(0); }
  31% { transform: scaleX(1) translateY(-20px); }
  32% { left: 48%; transform: scaleX(1) translateY(0); }
  33% { transform: scaleX(1) translateY(-20px); }
  34% { left: 50.5%; transform: scaleX(1) translateY(0); }
  35% { transform: scaleX(1) translateY(-20px); }
  36% { left: 53%; transform: scaleX(1) translateY(0); }
  37% { transform: scaleX(1) translateY(-20px); }
  38% { left: 55.5%; transform: scaleX(1) translateY(0); }
  39% { transform: scaleX(1) translateY(-20px); }
  40% { left: 58%; transform: scaleX(1) translateY(0); }
  41% { transform: scaleX(1) translateY(-20px); }
  42% { left: 60.5%; transform: scaleX(1) translateY(0); }
  43% { transform: scaleX(1) translateY(-20px); }
  44% { left: 63%; transform: scaleX(1) translateY(0); }
  45% { transform: scaleX(1) translateY(-20px); }
  46% { left: 65.5%; transform: scaleX(1) translateY(0); }
  47% { transform: scaleX(1) translateY(-20px); }
  48% { left: 68%; transform: scaleX(1) translateY(0); }
  49% { transform: scaleX(1) translateY(-20px); }
  50% { left: 70.5%; transform: scaleX(1) translateY(0); }
  51% { transform: scaleX(1) translateY(-20px); }
  52% { left: 73%; transform: scaleX(1) translateY(0); }
  53% { transform: scaleX(1) translateY(-20px); }
  54% { left: 75.5%; transform: scaleX(1) translateY(0); }
  55% { transform: scaleX(1) translateY(-20px); }
  56% { left: 78%; transform: scaleX(1) translateY(0); }
  57% { transform: scaleX(1) translateY(-20px); }
  58% { left: 80.5%; transform: scaleX(1) translateY(0); }
  59% { transform: scaleX(1) translateY(-20px); }
  60% { left: 83%; transform: scaleX(1) translateY(0); }
  61% { transform: scaleX(1) translateY(-20px); }
  62% { left: 85.5%; transform: scaleX(1) translateY(0); }
  63% { transform: scaleX(1) translateY(-20px); }
  64% { left: 88%; transform: scaleX(1) translateY(0); }
  65% { transform: scaleX(1) translateY(-20px); }
  66% { left: 90.5%; transform: scaleX(1) translateY(0); }
  67% { transform: scaleX(1) translateY(-20px); }
  68% { left: 93%; transform: scaleX(1) translateY(0); }
  69% { transform: scaleX(1) translateY(-20px); }
  70% { left: 95.5%; opacity: 1; transform: scaleX(1) translateY(0); }
  71% { opacity: 0.9; transform: scaleX(1) translateY(-20px); }
  72% { left: 98%; opacity: 0.7; transform: scaleX(1) translateY(0); }
  73% { opacity: 0.5; transform: scaleX(1) translateY(-20px); }
  74% { left: 100.5%; opacity: 0.3; transform: scaleX(1) translateY(0); }
  75% { opacity: 0.1; transform: scaleX(1) translateY(-20px); }
  76% { left: 110%; opacity: 0; transform: scaleX(1) translateY(0); }
  76.5% { left: -110%; opacity: 0; transform: scaleX(1) translateY(0); }
  77.5% { left: -80%; opacity: 1; transform: scaleX(1) translateY(0); }
  78% { left: -68%; opacity: 1; transform: scaleX(1) translateY(-20px); }
  78.5% { left: -56%; opacity: 1; transform: scaleX(1) translateY(0); }
  79% { left: -44%; opacity: 1; transform: scaleX(1) translateY(-20px); }
  79.5% { left: -32%; opacity: 1; transform: scaleX(1) translateY(0); }
  80% { left: -20%; opacity: 1; transform: scaleX(1) translateY(-20px); }
  80.5% { left: -8%; opacity: 1; transform: scaleX(1) translateY(0); }
  81% { left: 4%; opacity: 1; transform: scaleX(1) translateY(-20px); }
  81.5% { left: 8%; opacity: 1; transform: scaleX(1) translateY(0); }
  82%, 100% { left: 8%; opacity: 1; transform: scaleX(1) translateY(0); }
}

@keyframes sombraPulante {
  0% { left: 8%; transform: translateX(calc(-50% + 90px)) scale(1); }
  1% { left: 8%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  2% { left: 10.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  3% { left: 10.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  4% { left: 13%; transform: translateX(calc(-50% + 90px)) scale(1); }
  5% { left: 13%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  6% { left: 15.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  7% { left: 15.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  8% { left: 18%; transform: translateX(calc(-50% + 90px)) scale(1); }
  9% { left: 18%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  10% { left: 20.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  11% { left: 20.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  12% { left: 23%; transform: translateX(calc(-50% + 90px)) scale(1); }
  13% { left: 23%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  14% { left: 25.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  15% { left: 25.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  16% { left: 28%; transform: translateX(calc(-50% + 90px)) scale(1); }
  17% { left: 28%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  18% { left: 30.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  19% { left: 30.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  20% { left: 33%; transform: translateX(calc(-50% + 90px)) scale(1); }
  21% { left: 33%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  22% { left: 35.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  23% { left: 35.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  24% { left: 38%; transform: translateX(calc(-50% + 90px)) scale(1); }
  25% { left: 38%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  26% { left: 40.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  27% { left: 40.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  28% { left: 43%; transform: translateX(calc(-50% + 90px)) scale(1); }
  29% { left: 43%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  30% { left: 45.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  31% { left: 45.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  32% { left: 48%; transform: translateX(calc(-50% + 90px)) scale(1); }
  33% { left: 48%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  34% { left: 50.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  35% { left: 50.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  36% { left: 53%; transform: translateX(calc(-50% + 90px)) scale(1); }
  37% { left: 53%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  38% { left: 55.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  39% { left: 55.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  40% { left: 58%; transform: translateX(calc(-50% + 90px)) scale(1); }
  41% { left: 58%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  42% { left: 60.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  43% { left: 60.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  44% { left: 63%; transform: translateX(calc(-50% + 90px)) scale(1); }
  45% { left: 63%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  46% { left: 65.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  47% { left: 65.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  48% { left: 68%; transform: translateX(calc(-50% + 90px)) scale(1); }
  49% { left: 68%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  50% { left: 70.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  51% { left: 70.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  52% { left: 73%; transform: translateX(calc(-50% + 90px)) scale(1); }
  53% { left: 73%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  54% { left: 75.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  55% { left: 75.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  56% { left: 78%; transform: translateX(calc(-50% + 90px)) scale(1); }
  57% { left: 78%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  58% { left: 80.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  59% { left: 80.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  60% { left: 83%; transform: translateX(calc(-50% + 90px)) scale(1); }
  61% { left: 83%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  62% { left: 85.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  63% { left: 85.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  64% { left: 88%; transform: translateX(calc(-50% + 90px)) scale(1); }
  65% { left: 88%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  66% { left: 90.5%; transform: translateX(calc(-50% + 90px)) scale(1); }
  67% { left: 90.5%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  68% { left: 93%; transform: translateX(calc(-50% + 90px)) scale(1); }
  69% { left: 93%; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  70% { left: 95.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  71% { left: 95.5%; opacity: 0.9; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  72% { left: 98%; opacity: 0.7; transform: translateX(calc(-50% + 90px)) scale(1); }
  73% { left: 98%; opacity: 0.5; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  74% { left: 100.5%; opacity: 0.3; transform: translateX(calc(-50% + 90px)) scale(1); }
  75% { left: 100.5%; opacity: 0.1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  76% { left: 110%; opacity: 0; transform: translateX(calc(-50% + 90px)) scale(1); }
  76.5% { left: -110%; opacity: 0; transform: translateX(calc(-50% + 90px)) scale(1); }
  77.5% { left: -80%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  78% { left: -68%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  78.5% { left: -56%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  79% { left: -44%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  79.5% { left: -32%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  80% { left: -20%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  80.5% { left: -8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  81% { left: 4%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  81.5% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  82%, 100% { left: 8%; transform: translateX(calc(-50% + 90px)) scale(1); }
}

@keyframes sombraMovimento {
  0% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  2% { left: 10.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  4% { left: 13%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  6% { left: 15.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  8% { left: 18%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  10% { left: 20.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  12% { left: 23%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  14% { left: 25.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  16% { left: 28%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  18% { left: 30.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  20% { left: 33%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  22% { left: 35.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  24% { left: 38%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  26% { left: 40.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  28% { left: 43%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  30% { left: 45.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  32% { left: 48%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  34% { left: 50.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  36% { left: 53%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  38% { left: 55.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  40% { left: 58%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  42% { left: 60.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  44% { left: 63%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  46% { left: 65.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  48% { left: 68%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  50% { left: 70.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  52% { left: 73%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  54% { left: 75.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  56% { left: 78%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  58% { left: 80.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  60% { left: 83%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  62% { left: 85.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  64% { left: 88%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  66% { left: 90.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  68% { left: 93%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  70% { left: 95.5%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  72% { left: 98%; opacity: 0.8; transform: translateX(calc(-50% + 90px)) scale(1); }
  74% { left: 100.5%; opacity: 0.4; transform: translateX(calc(-50% + 90px)) scale(1); }
  76% { left: 110%; opacity: 0; transform: translateX(calc(-50% + 90px)) scale(1); }
  76.5% { left: -110%; opacity: 0; transform: translateX(calc(-50% + 90px)) scale(1); }
  77% { left: -80%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  79% { left: -70%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  83% { left: -60%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  85% { left: -50%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  87% { left: -30%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  89% { left: -10%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  90% { left: 0%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  91% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  91%, 100% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
}

.galinha-sombra {
  position: absolute;
  width: 140px;
  height: 30px;
  left: 50%;
  bottom: 125px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0) 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(2px);
  animation: sombraPulante 40s linear infinite;
}

.wave-galinha img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.moita-esquerda {
  position: absolute;
  width: 350px;
  height: 350px;
  left: -50px;
  bottom: 110px;
  pointer-events: none;
  z-index: 3;
  animation: moitaMovimento 40s linear infinite;
}

.zebra-onda {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 50px;
  bottom: 80px;
  pointer-events: none;
  z-index: 3;
}

.zebra-onda img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.moita-esquerda img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes moitaMovimento {
  0%, 81% { transform: translateX(0); }
  81.2% { transform: translateX(12px); }
  81.4% { transform: translateX(-4px); }
  81.6% { transform: translateX(0); }
  100% { transform: translateX(0); }
}

@keyframes galhaMeioEVolta {
  0% { left: 8%; transform: scaleX(1) translateY(0); }
  2.89% { left: 12%; transform: scaleX(1) translateY(-15px); }
  5.78% { left: 16%; transform: scaleX(1) translateY(0); }
  8.67% { left: 20%; transform: scaleX(1) translateY(-15px); }
  11.56% { left: 24%; transform: scaleX(1) translateY(0); }
  14.44% { left: 28%; transform: scaleX(1) translateY(-15px); }
  17.33% { left: 32%; transform: scaleX(1) translateY(0); }
  20.22% { left: 36%; transform: scaleX(1) translateY(-15px); }
  23.11% { left: 40%; transform: scaleX(1) translateY(0); }
  25.99% { left: 44%; transform: scaleX(1) translateY(-15px); }
  28.88% { left: 48%; transform: scaleX(1) translateY(0); }
  30% { left: 50%; transform: scaleX(1) translateY(0); }
  57.78% { left: 50%; transform: scaleX(1) translateY(0); }
  59.22% { left: 50%; transform: scaleX(-1) translateY(0); }
  60.67% { left: 48%; transform: scaleX(-1) translateY(0); }
  63.56% { left: 44%; transform: scaleX(-1) translateY(-15px); }
  66.44% { left: 40%; transform: scaleX(-1) translateY(0); }
  69.33% { left: 36%; transform: scaleX(-1) translateY(-15px); }
  72.22% { left: 32%; transform: scaleX(-1) translateY(0); }
  75.11% { left: 28%; transform: scaleX(-1) translateY(-15px); }
  77.99% { left: 24%; transform: scaleX(-1) translateY(0); }
  80.88% { left: 20%; transform: scaleX(-1) translateY(-15px); }
  83.77% { left: 16%; transform: scaleX(-1) translateY(0); }
  86.66% { left: 12%; transform: scaleX(-1) translateY(-15px); }
  89.55% { left: 8%; transform: scaleX(-1) translateY(0); }
  92.43% { left: 8%; transform: scaleX(-1) translateY(0); }
  92.5%, 100% { left: 8%; transform: scaleX(1) translateY(0); }
}

.galinha-meio-volta {
  animation: galhaMeioEVolta 14s linear infinite !important;
}

.arvore-onda-clinico {
  position: absolute;
  width: 350px;
  height: 350px;
  right: 120px;
  bottom: 60px;
  pointer-events: none;
  z-index: 2;
}

.arvore-onda-clinico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsivo Árvore Wave Clínico */
@media (max-width: 1024px) {
  .arvore-onda-clinico {
    width: 280px;
    height: 280px;
    right: 80px;
  }
}

@media (max-width: 768px) {
  .arvore-onda-clinico {
    width: 220px;
    height: 220px;
    right: 40px;
    bottom: 40px;
  }
}

@media (max-width: 480px) {
  .arvore-onda-clinico {
    display: none;
  }
}

@keyframes sombraMeioEVolta {
  0% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  1.44% { left: 10%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  2.89% { left: 12%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  4.33% { left: 14%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  5.78% { left: 16%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  7.22% { left: 18%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  8.67% { left: 20%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  10.11% { left: 22%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  11.56% { left: 24%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  13% { left: 26%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  14.44% { left: 28%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  15.89% { left: 30%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  17.33% { left: 32%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  18.78% { left: 34%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  20.22% { left: 36%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  21.67% { left: 38%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  23.11% { left: 40%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  24.55% { left: 42%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  25.99% { left: 44%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  27.44% { left: 46%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  28.88% { left: 48%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  30% { left: 50%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  57.78% { left: 50%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  59.22% { left: 50%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  60.67% { left: 48%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  62.11% { left: 46%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  63.56% { left: 44%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  65% { left: 42%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  66.44% { left: 40%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  67.89% { left: 38%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  69.33% { left: 36%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  70.78% { left: 34%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  72.22% { left: 32%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  73.67% { left: 30%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  75.11% { left: 28%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  76.56% { left: 26%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  77.99% { left: 24%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  79.44% { left: 22%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  80.88% { left: 20%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  82.33% { left: 18%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  83.77% { left: 16%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  85.22% { left: 14%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  86.66% { left: 12%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  88.1% { left: 10%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(0.8); }
  89.55% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  90% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  91% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  92% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  92.43% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  92.5% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  95% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
  100% { left: 8%; opacity: 1; transform: translateX(calc(-50% + 90px)) scale(1); }
}

.corpo-clinico-section .home-wave-divider .galinha-sombra {
  animation: sombraPulante 40s linear infinite !important;
}

.corpo-clinico-section .galinha-sombra {
  animation: sombraMeioEVolta 14s linear infinite !important;
}

@media (max-width: 1024px) {
  .wave-divider {
    height: 220px;
    margin-top: 120px;
    margin-bottom: -60px;
  }
}

@media (max-width: 768px) {
  .wave-divider {
    height: 200px;
    margin-top: 80px;
    margin-bottom: -50px;
  }
}

.clinico-wave svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.clinico-wave svg.wave-primary {
  z-index: 2;
}

.clinico-wave svg.wave-secondary {
  z-index: 1;
  top: 8px;
}

.clinico-wave svg.wave-primary path {
  fill: #ffffff;
}

.clinico-wave svg.wave-secondary path {
  fill: rgba(255, 255, 255, 0.5);
}

@media (max-width: 320px) {

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .cuidado-section {
    padding: 60px 20px;
  }

  .cuidado-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cuidado-text {
    max-width: none;
  }
}

/* PÁGINA DE BLOG */
.blog-page-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
  min-height: calc(100vh - 200px);
}

.blog-page-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.blog-page-header h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.blog-page-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsivo Blog Page Typography */
@media (max-width: 1024px) {
  .blog-page-header h1 {
    font-size: 2.6rem;
  }

  .blog-page-header p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .blog-page-header h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .blog-page-header p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .blog-page-header h1 {
    font-size: 1.6rem;
  }

  .blog-page-header p {
    font-size: 0.9rem;
  }
}

.blog-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-article-full {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-article-image {
  width: 100%;
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.blog-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-badge-large {
  display: inline-block;
  background: rgba(175, 215, 151, 0.15);
  color: #afd797;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  width: fit-content;
}

.blog-article-content h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  color: var(--dark);
}

.blog-article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: #999;
}

.blog-article-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* Responsivo Blog Article Typography */
@media (max-width: 1024px) {
  .blog-article-content h2 {
    font-size: 2rem;
  }

  .blog-article-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .blog-article-content h2 {
    font-size: 1.6rem;
  }

  .blog-article-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .blog-article-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .blog-article-content h2 {
    font-size: 1.3rem;
  }

  .blog-article-content p {
    font-size: 0.9rem;
  }
}

.blog-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  margin: 60px 0;
}

.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-article-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.blog-article-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-article-card:hover .blog-article-card-image img {
  transform: scale(1.05);
}

.blog-article-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-article-card-content h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--dark);
}

.blog-article-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: #999;
}

.blog-article-card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  flex: 1;
}

.blog-link-card {
  color: #afd797;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-link-card:hover {
  gap: 8px;
  transform: translateX(4px);
}

/* Responsivo */
@media (max-width: 768px) {
  .blog-page-header h1 {
    font-size: 2.2rem;
  }

  .blog-page-header p {
    font-size: 1rem;
  }

  .blog-article-image {
    height: 300px;
  }

  .blog-article-content h2 {
    font-size: 1.8rem;
  }

  .blog-articles-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-article-card-content {
    padding: 20px;
  }
}

/* SEÇÃO DE AVALIAÇÕES GOOGLE */
.google-reviews-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f8f5 100%);
}

.google-reviews-container {
  max-width: 1100px;
  margin: 0 auto;
}

.google-reviews-section h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.google-reviews-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #afd797;
  font-weight: 600;
  margin-bottom: 50px;
}

.google-reviews-grid {
  width: 100%;
  min-height: 300px;
  position: relative;
}

#reviews-widget-19 {
  width: 100% !important;
  display: block !important;
}

/* Responsivo */
@media (max-width: 1024px) {
  .google-reviews-grid {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .google-reviews-section {
    padding: 60px 20px;
  }

  .google-reviews-section h2 {
    font-size: 2rem;
  }

  .google-reviews-grid {
    min-height: 250px;
  }
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a45 100%);
  color: white;
  padding: 80px 20px 40px;
  margin-top: 0;
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #afd797;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 70px;
  width: auto;
  filter: brightness(1.2);
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  text-align: left;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(175, 215, 151, 0.15);
  border-radius: 50%;
  color: #afd797;
  transition: all 0.3s ease;
  border: 1px solid rgba(175, 215, 151, 0.3);
}

.social-link:hover {
  background: #afd797;
  color: #1a3a2a;
  transform: translateY(-4px);
  border-color: #afd797;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #afd797;
  padding-left: 8px;
}

.footer-address {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(175, 215, 151, 0.3), transparent);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-bottom p:first-child {
  text-align: left;
  flex: 1;
}

.footer-design {
  font-size: 0.85rem !important;
  color: rgba(175, 215, 151, 0.7) !important;
  font-style: italic;
  text-align: right;
  flex: 1;
}

.footer-design a {
  color: #afd797;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-design a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsivo Footer */
@media (max-width: 1024px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 25px;
    margin-top: 0;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-about,
  .footer-links li,
  .footer-address {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 16px 20px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-about,
  .footer-links li,
  .footer-address {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    text-align: center;
    flex: none;
  }

  .footer-design {
    text-align: center;
    flex: none;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}

/* Carrossel Swiper - Nossos Valores */
.valores-carousel {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  overflow: visible;
}

@media (max-width: 768px) {
  .valores-carousel {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
}

.valores-carousel .swiper-wrapper {
  transition-timing-function: linear !important;
}

.valores-carousel .swiper-slide {
  width: 280px;
  opacity: 0.4;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
  height: auto;
}

@media (min-width: 768px) {
  .valores-carousel .swiper-slide {
    width: 400px;
  }
}

.valores-carousel .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* CONTACT INFO SECTION */
.contact-info-section {
  padding: 60px 20px;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-section h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.contact-item {
  background: #f8fbfa;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-item p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

.contact-item a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--blue);
}

.btn-contact {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-contact:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-item-cta {
  text-align: center;
  border-top: none !important;
  padding: 0 !important;
  margin: 40px 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: none !important;
  transform: none !important;
}

.contact-item-cta:hover {
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.btn-contact-grande {
  display: inline-block;
  background: var(--green);
  color: white !important;
  padding: 24px 48px;
  border-radius: 16px;
  text-decoration: none !important;
  font-size: 1.15em !important;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(169, 198, 195, 0.3);
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-contact-grande:hover {
  background: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(107, 127, 163, 0.35);
}

/* HORÁRIOS EXPANDÍVEIS */
.horarios-item {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 20px;
}

.horarios-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.horarios-status {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-badge {
  font-weight: 700;
  font-size: 0.95em;
  color: #2d7a4f;
}

.status-badge.fechado {
  color: #d32f2f;
}

.status-text {
  font-size: 0.85em;
  color: #666;
}

.horarios-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: transform 0.3s ease;
}

.horarios-toggle.ativo {
  transform: rotate(180deg);
}

.horarios-detalhes {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.horario-dia {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9em;
  color: #666;
}

.horario-dia span:last-child {
  font-weight: 500;
  color: var(--dark);
}

/* CONTACT INFO RESPONSIVE */
@media (max-width: 768px) {
  .contact-item {
    padding: 20px;
    margin-bottom: 16px;
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }
}

/* SOBRE NÓS SECTION - PÁGINA SOBRE */
.sobre-nós-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafb 0%, rgba(169, 198, 195, 0.06) 50%, rgba(107, 127, 163, 0.04) 100%);
}

.sobre-nós-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.sobre-nós-section h2 {
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.sobre-nós-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.sobre-nós-gallery {
  margin-bottom: 0;
  max-width: 600px;
  position: relative;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camaleon-decoration {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -146px;
  right: 400px;
  z-index: 20;
  pointer-events: none;
  transform: scaleX(-1) rotate(19deg);
}

.camaleon-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsivo Camaleon */
@media (max-width: 1024px) {
  .camaleon-decoration {
    width: 200px;
    height: 200px;
    right: 20%;
    top: -110px;
  }
}

@media (max-width: 768px) {
  .camaleon-decoration {
    width: 150px;
    height: 150px;
    right: 10%;
    top: -80px;
    display: none;
  }

  .gallery-controls {
    gap: 12px;
  }

  .gallery-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .thumbnail-scroll {
    gap: 10px;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .camaleon-decoration {
    display: none;
  }

  .sobre-nós-section {
    padding: 40px 20px;
  }

  .sobre-nós-container {
    max-width: 100%;
  }

  .sobre-nós-grid {
    gap: 30px;
  }

  .sobre-nós-section h2 {
    font-size: 1.4em;
    margin-bottom: 25px;
  }

  .sobre-nós-gallery {
    width: 100%;
    max-width: 100%;
  }

  .gallery-main {
    aspect-ratio: 4/3;
    margin-bottom: 15px;
  }

  .gallery-controls {
    gap: 10px;
  }

  .gallery-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .thumbnail {
    width: 50px;
    height: 50px;
  }

  .sobre-nós-text {
    width: 100%;
  }

  .sobre-nós-text p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .btn-agendar-sobre {
    display: block;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}

@media (max-width: 360px) {
  .sobre-nós-section {
    padding: 30px 12px;
  }

  .sobre-nós-section h2 {
    font-size: 1.3em;
    margin-bottom: 20px;
  }

  .gallery-main {
    aspect-ratio: 1/1;
    margin-bottom: 12px;
  }

  .gallery-arrow {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .thumbnail {
    width: 45px;
    height: 45px;
  }

  .sobre-nós-text {
    max-width: 100%;
    margin: 0;
  }

  .sobre-nós-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .btn-agendar-sobre {
    display: block;
    width: 100%;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.gallery-arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--green);
  color: white;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-arrow:hover {
  background: var(--blue);
  transform: scale(1.1);
}

.gallery-thumbnails {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-thumbnails::-webkit-scrollbar {
  display: none;
}

.thumbnail-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  padding: 10px 0;
  justify-content: center;
}

@media (max-width: 768px) {
  .thumbnail-scroll {
    flex-wrap: wrap;
  }
}

.thumbnail {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail.active {
  border-color: var(--green);
  transform: scale(1.1);
}

.thumbnail:hover {
  border-color: var(--blue);
}

.sobre-nós-text {
  max-width: 100%;
  margin: 0;
  text-align: left;
  line-height: 1.8;
}

.sobre-nós-text p {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 20px;
  text-align: left;
}

.btn-agendar-sobre {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-agendar-sobre:hover {
  background: #fcc85f;
  transform: scale(1.05);
}

/* ESPECIALIDADES CARROSSEL */
.especialidades-carrossel-section {
  padding: 80px 20px;
  background: #faf9f8;
  position: relative;
  overflow: visible;
}

.especialidades-carrossel-section h2 {
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 3;
}

.especialidades-carrossel-section .container {
  position: relative;
  z-index: 3;
}

.especialidades-carrossel-section .hero-cloud {
  position: absolute;
  z-index: 1;
  opacity: 0.85;
}

.especialidades-carrossel-section .hero-cloud-left {
  top: 5%;
  left: 3%;
}

.especialidades-carrossel-section .hero-cloud-right {
  top: 8%;
  right: 5%;
}

.especialidades-carrossel-section .wave-divider {
  margin-top: 80px;
  margin-bottom: -100px;
}

.especialidades-carrossel-section .wave-divider path {
  fill: #1a3a2a;
}

.arvore-decorativa {
  position: absolute;
  bottom: 50px;
  left: 70%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.arvore-decorativa img {
  width: 360px;
  height: auto;
  display: block;
}

/* Responsivo Árvore Decorativa */
@media (max-width: 1024px) {
  .arvore-decorativa img {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .arvore-decorativa img {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .arvore-decorativa {
    display: none;
  }
}

.jacare-decorativo {
  position: absolute;
  bottom: 90px;
  left: 35%;
  transform: translateX(-50%);
  z-index: 9;
  pointer-events: none;
}

.jacare-decorativo img {
  width: 300px;
  height: auto;
  display: block;
}

/* Responsivo Jacaré Decorativo */
@media (max-width: 1024px) {
  .jacare-decorativo img {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .jacare-decorativo img {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .jacare-decorativo {
    display: none;
  }
}

.jacare-decorativo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  justify-items: center;
}

.especialidade-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Responsivo Especialidades Grid */
@media (max-width: 768px) {
  .especialidades-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px;
  }

  .especialidade-card {
    padding: 24px 20px;
  }

  .btn-saiba-mais {
    padding: 10px 20px;
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .especialidades-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  .especialidade-card {
    padding: 20px 16px;
  }

  .especialidade-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .especialidade-conteudo h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
  }

  .especialidade-conteudo p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .btn-saiba-mais {
    padding: 8px 16px;
    font-size: 0.8em;
  }
}

.especialidade-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.especialidade-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.especialidade-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.especialidade-conteudo h3 {
  font-size: 1.3em;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.especialidade-conteudo p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-saiba-mais {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-saiba-mais:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* MODAL ESPECIALIDADE */
.modal-especialidade {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-especialidade.ativo {
  display: flex;
}

.modal-especialidade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.modal-especialidade-conteudo {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-especialidade-conteudo h2 {
  font-size: 2em;
  margin-bottom: 15px;
  text-align: center;
  color: var(--dark);
}

.especialidade-descricao {
  font-size: 1em;
  color: #666;
  text-align: center;
  margin-bottom: 35px;
  line-height: 1.6;
}

.modal-especialidade-fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--dark);
  transition: color 0.3s ease;
}

.modal-especialidade-fechar:hover {
  color: var(--green);
}

.medicos-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.medico-modal-card {
  background: #f8fafb;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.medico-modal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.medico-modal-foto {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.medico-modal-card h3 {
  font-size: 1.1em;
  margin-bottom: 8px;
  color: var(--dark);
}

.medico-modal-credencial {
  font-size: 0.85em;
  color: #999;
  margin-bottom: 15px;
}

.medico-modal-complemento {
  font-size: 0.85em;
  color: #777;
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
}

.btn-agendar-whatsapp {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-agendar-whatsapp:hover {
  background: #99b9b5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.sem-medico {
  text-align: center;
  color: #999;
  font-size: 1.1em;
  padding: 40px;
}

.sol-decorativo {
  position: absolute;
  top: 20px;
  left: 80%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.sol-decorativo img {
  width: 220px;
  height: auto;
  display: block;
}

.cachorro-decorativo {
  position: absolute;
  top: -220px;
  left: 15%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.cachorro-decorativo img {
  width: 200px;
  height: auto;
  display: block;
}


@media (max-width: 768px) {
  .sobre-nós-section {
    padding: 60px 16px;
  }

  .sobre-nós-gallery {
    max-width: 90%;
    margin: 0 auto;
  }

  .sobre-nós-section h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .sobre-nós-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-nós-gallery {
    max-width: 100%;
  }

  .gallery-main {
    aspect-ratio: 4/3;
    margin-bottom: 20px;
  }

  .gallery-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .sobre-nós-text {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }

  .sobre-nós-text p {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .btn-agendar-sobre {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .especialidades-carrossel-section {
    padding: 60px 20px;
  }

  .especialidades-carrossel-section h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .especialidades-grid {
    grid-auto-columns: minmax(280px, 1fr);
    gap: 24px;
  }

  .especialidade-card {
    padding: 20px 15px;
  }

  .especialidades-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  padding: 20px;
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.3s ease-in-out;
  border-top: 4px solid var(--green);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.cookie-content a {
  color: var(--blue);
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-accept,
.cookie-reject,
.cookie-policy-link {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--green);
  color: white;
}

.cookie-accept:hover {
  background: #94b3b0;
  transform: translateY(-2px);
}

.cookie-accept:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.cookie-reject {
  background: #f0f0f0;
  color: var(--dark);
  border: 1px solid #e0e0e0;
}

.cookie-reject:hover {
  background: #e8e8e8;
  border-color: #d0d0d0;
  transform: translateY(-2px);
}

.cookie-reject:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.cookie-policy-link {
  background: transparent;
  color: var(--blue);
  text-decoration: none;
}

.cookie-policy-link:hover {
  background: rgba(169, 198, 195, 0.15);
}

.footer-legal-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.footer-legal-links a,
.footer-cookie-reset {
  color: rgba(255, 255, 255, 0.85);
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
}

.footer-cookie-reset {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.map-consent {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(169, 198, 195, 0.14), rgba(253, 209, 115, 0.12));
  color: var(--dark);
}

.map-consent p {
  max-width: 360px;
  margin: 0;
  font-size: 0.95rem;
}

.map-consent-button {
  border: 0;
  border-radius: 24px;
  padding: 11px 22px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
}

.legal-page {
  padding: 80px 20px;
  background: #faf9f8;
}

.legal-container {
  width: min(960px, 100%);
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.legal-updated {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 28px;
}

.legal-container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin: 30px 0 12px;
}

.legal-container p,
.legal-container li {
  color: var(--dark);
  line-height: 1.75;
}

.legal-container ul {
  padding-left: 22px;
}

.legal-note {
  border-left: 4px solid var(--green);
  padding: 14px 18px;
  background: rgba(169, 198, 195, 0.12);
  border-radius: 8px;
}

/* RESPONSIVIDADE - COOKIE BANNER */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content p {
    font-size: 0.9rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-accept,
  .cookie-reject,
  .cookie-policy-link {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.9rem;
    text-align: center;
  }

  .footer-section:nth-child(3),
  .footer-section:nth-child(4) {
    display: none;
  }
}

@media (max-width: 768px) {
  .legal-page {
    padding: 48px 16px;
  }

  .legal-container {
    padding: 28px 20px;
  }

  .legal-container h1 {
    font-size: 2rem;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 6px;
  }

  .footer-legal-links span {
    display: none;
  }
}

/* RESPONSIVIDADE - VERY SMALL DEVICES (360px-390px) */
@media (max-width: 390px) {
  .header .container {
    padding: 0 12px;
  }

  .header {
    padding: 14px 12px;
    height: auto;
  }

  .header .logo img {
    height: 48px;
  }

  .header .btn-primary {
    font-size: 0.85em;
    padding: 9px 16px;
  }

  .hero-headline {
    font-size: 2.2em;
    line-height: 1.2;
  }

  .hero-subheadline {
    font-size: 0.95em;
    line-height: 1.5;
  }

  .btn-hero {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  .btn-hero.primary {
    width: 100%;
    margin-bottom: 8px;
  }

  .btn-hero.secondary {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .cuidado-grid {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }

  .cuidado-text h2 {
    font-size: 1.6em;
    line-height: 1.3;
  }

  .cuidado-text p {
    font-size: 0.95em;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .stat-item h3 {
    font-size: 2em;
  }

  .stat-item p {
    font-size: 0.9em;
  }

  .btn-primary,
  .btn-secondary,
  .btn-cuidado {
    padding: 10px 16px;
    font-size: 0.9em;
    min-height: 40px;
  }

  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.5em;
  }

  .footer {
    padding: 30px 16px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-section h3 {
    font-size: 1em;
    margin-bottom: 12px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.85em;
  }
}

/* Responsive hardening for internal pages */
@media (max-width: 900px) {
  body,
  html {
    overflow-x: hidden;
  }

  main,
  section,
  .container,
  .especialidade-container,
  .especialidade-content,
  .blog-container,
  .localizacao-container,
  .footer-container,
  [class*="sobre"][class*="container"] {
    max-width: 100%;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .especialidade-grid,
  .localizacao-grid,
  .blog-article-full,
  [class*="sobre"][class*="grid"] {
    grid-template-columns: 1fr;
  }

  .especialidade-content {
    padding-inline: 20px;
  }

  .medico-card-horizontal,
  .medico-card-especialidade,
  .blog-article-full,
  .blog-article-card,
  .info-card {
    max-width: 100%;
  }

  .medico-card-horizontal {
    padding: 28px 22px;
  }

  .medico-info-horizontal,
  .medico-info-horizontal h3,
  .medico-bio,
  .especialidade-info,
  .especialidade-medico {
    min-width: 0;
  }

  .medico-info-horizontal h3,
  .especialidade-info h2,
  .especialidade-info h3,
  .blog-article-content h2,
  .blog-article-card-content h3 {
    overflow-wrap: anywhere;
  }

  .btn-agendar-especialidade,
  .btn-agendar-modal,
  .localizacao-cta,
  .btn-read-more,
  .blog-link-card {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-decoration,
  .hero-cloud,
  .hero-animal,
  .wave-elephant,
  .wave-lion,
  .wave-galinha,
  .galinha-sombra,
  .moita-esquerda,
  .zebra-onda,
  .zebra-footer-wave,
  .arvore-onda-clinico,
  .arvore-decorativa,
  .jacare-decorativo,
  .sol-decorativo,
  .cachorro-decorativo,
  .cachorro-decoration,
  .camaleao-decoration,
  .elefante-decoration,
  .jacare-decoration,
  .leao-decoration,
  .balao01-decoration,
  .camaleon-decoration,
  .cachorro-mapa,
  .pedra-wave {
    display: none !important;
  }

  .especialidades-carrossel-section,
  .corpo-clinico-section,
  .blog-page-section,
  .localizacao-section,
  .contato-section,
  section[class*="sobre"] {
    overflow: hidden;
  }

  .wave-divider {
    height: 120px !important;
    margin-top: 48px !important;
    margin-bottom: -32px !important;
    overflow: hidden;
  }

  .corpo-clinico-section .wave-divider,
  .especialidades-carrossel-section .wave-divider {
    margin-top: 40px !important;
  }

  .especialidades-carrossel-section .wave-divider svg,
  .wave-divider svg {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .especialidades-carrossel-section .wave-divider {
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    margin-bottom: -60px !important;
  }

  .especialidades-carrossel-section .wave-divider svg {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .blog-article-image,
  .blog-article-card-image,
  .blog-featured-image,
  .blog-post-image,
  .gallery-main,
  .localizacao-mapa {
    overflow: hidden;
  }

  .blog-article-image img,
  .blog-article-card-image img,
  .blog-featured-image img,
  .blog-post-image img,
  .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 560px) {
  .especialidade-hero {
    margin-top: 72px;
    padding: 32px 16px;
  }

  .especialidade-hero h1,
  .corpo-clinico-section h1,
  .blog-page-header h1,
  .localizacao-header h2,
  .especialidades-carrossel-section h2,
  section[class*="sobre"] h2 {
    font-size: clamp(1.55rem, 9vw, 2.05rem);
    line-height: 1.15;
  }

  .especialidade-content {
    margin: 30px auto;
    padding-inline: 16px;
  }

  .especialidade-grid,
  .medicos-lista-vertical,
  .blog-articles-grid {
    gap: 22px;
  }

  .medico-card-horizontal,
  .medico-card-especialidade {
    border-radius: 12px;
    padding: 22px 16px;
  }

  .medico-foto-horizontal,
  .medico-foto-grande {
    width: min(42vw, 140px);
    height: min(42vw, 140px);
  }

  .medico-info-horizontal {
    align-items: stretch;
    text-align: center;
    width: 100%;
  }

  .medico-info-horizontal .btn-agendar-especialidade {
    align-self: stretch;
    width: 100%;
    padding-inline: 18px;
  }

  .especialidades-grid {
    padding-inline: 0;
  }

  .modal-especialidade-conteudo,
  .modal-medico-conteudo {
    width: calc(100% - 24px);
    padding: 28px 18px;
  }
}

/* Index stats: keep the three numbers in one row on mobile */
@media (max-width: 768px) {
  .stats-section {
    padding: 56px 12px;
  }

  .stats-container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(8px, 3vw, 18px);
    align-items: flex-start;
    justify-content: center;
    padding: 0;
  }

  .stat-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
    gap: 8px;
  }

  .stat-icon {
    width: clamp(30px, 9vw, 42px);
    height: clamp(30px, 9vw, 42px);
  }

  .stat-item h3 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .stat-item p {
    font-size: clamp(0.68rem, 3.2vw, 0.9rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}

/* Home wave: keep the animated chicken and bush visible on mobile */
@media (max-width: 768px) {
  .home-wave-divider {
    height: 200px !important;
    margin-top: 80px !important;
    margin-bottom: -50px !important;
    overflow: visible !important;
  }

  .home-wave-divider .wave-galinha,
  .home-wave-divider .galinha-sombra,
  .home-wave-divider .moita-esquerda {
    display: block !important;
  }

  .home-wave-divider .wave-galinha {
    width: clamp(110px, 22vw, 150px) !important;
    height: clamp(110px, 22vw, 150px) !important;
    bottom: 82px !important;
    z-index: 3;
  }

  .home-wave-divider .galinha-sombra {
    width: clamp(65px, 14vw, 95px) !important;
    height: 16px !important;
    bottom: 72px !important;
    z-index: 2;
  }

  .home-wave-divider .moita-esquerda {
    width: clamp(210px, 42vw, 280px) !important;
    height: clamp(210px, 42vw, 280px) !important;
    left: -50px !important;
    bottom: 55px !important;
    z-index: 4;
  }
}

/* Specialty pages: keep desktop animal decorations from covering headings */
@media (min-width: 769px) {
  .especialidade-medico {
    isolation: isolate;
  }

  .especialidade-medico > h2 {
    position: relative;
    z-index: 6;
  }

  .especialidade-medico .medico-card-especialidade {
    position: relative;
    z-index: 2;
  }

  .especialidade-medico .camaleao-decoration,
  .especialidade-medico .elefante-decoration,
  .especialidade-medico .jacare-decoration,
  .especialidade-medico .leao-decoration,
  .especialidade-medico .balao01-decoration {
    bottom: auto !important;
    right: auto !important;
    top: 72px !important;
    left: 24px !important;
    z-index: 3;
  }

  .especialidade-medico .leao-decoration {
    width: clamp(110px, 8vw, 145px);
  }

  .especialidade-medico .elefante-decoration {
    width: clamp(130px, 10vw, 175px);
  }

  .especialidade-medico .camaleao-decoration {
    width: clamp(125px, 10vw, 170px);
  }

  .especialidade-medico .jacare-decoration {
    width: clamp(120px, 9vw, 160px);
  }

  .especialidade-medico .balao01-decoration {
    width: clamp(105px, 8vw, 145px);
  }
}

/* Home hero mobile: restore a few decorative animals without covering text */
@media (max-width: 768px) {
  .hero {
    overflow: hidden;
  }

  .hero .hero-text-overlay {
    top: 45%;
  }

  .hero .hero-cloud,
  .hero .hero-monkey,
  .hero .wave-elephant,
  .hero .wave-lion {
    display: block !important;
    pointer-events: none;
  }

  .hero .hero-cloud {
    opacity: 0.36;
    z-index: 4;
  }

  .hero .hero-cloud-left {
    width: 118px;
    top: 16%;
    left: -20px;
  }

  .hero .hero-cloud-center {
    width: 128px;
    top: 8%;
    left: auto;
    right: 14px;
  }

  .hero .hero-cloud-right {
    display: none !important;
  }

  .hero .hero-monkey {
    width: clamp(82px, 24vw, 118px);
    height: clamp(100px, 30vw, 145px);
    top: -24px;
    right: 10px;
    z-index: 5;
    opacity: 0.92;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
  }

  .hero .wave-elephant {
    width: clamp(118px, 32vw, 155px);
    height: clamp(118px, 32vw, 155px);
    left: 8px;
    bottom: 58px;
    z-index: 23;
    opacity: 0.68;
  }

  .hero .wave-lion {
    width: clamp(76px, 21vw, 104px);
    height: clamp(76px, 21vw, 104px);
    right: 20px;
    bottom: 126px;
    z-index: 23;
    opacity: 0.78;
  }

  .hero .wave-lion::after {
    bottom: -10px !important;
    width: 74px;
    opacity: 0.35;
  }
}

@media (max-width: 430px) {
  .hero .hero-text-overlay {
    top: 43%;
  }

  .hero .wave-elephant {
    width: 102px;
    height: 102px;
    left: 0;
    bottom: 55px;
  }

  .hero .wave-lion {
    width: 72px;
    height: 72px;
    right: 8px;
    bottom: 124px;
  }
}

/* Blog editorial */
.blog-page-kicker {
  display: inline-block;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.blog-filter-group {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.blog-filter-group label,
.blog-filter-group h2 {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.blog-search-input {
  width: 100%;
  border: 1px solid rgba(169, 198, 195, 0.5);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: var(--dark);
  background: #fbfdfc;
}

.blog-search-input:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.blog-category-list,
.blog-tag-list,
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter-chip,
.blog-card-tags span {
  border: 1px solid rgba(169, 198, 195, 0.45);
  border-radius: 999px;
  padding: 8px 12px;
  background: #ffffff;
  color: var(--dark);
  font-size: 0.85rem;
  cursor: pointer;
}

.blog-filter-chip.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.blog-main {
  min-width: 0;
}

.blog-featured-post {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: 32px;
  align-items: stretch;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
  margin-bottom: 34px;
}

.blog-featured-post-image {
  min-height: 340px;
}

.blog-featured-post-image img,
.blog-post-card-image img,
.blog-single-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured-post-content {
  padding: 34px 34px 34px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.blog-featured-post-content h2 {
  font-size: 2rem;
  line-height: 1.25;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
}

.blog-results-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.blog-results-header h2 {
  font-size: 1.8rem;
}

.blog-results-header p {
  color: #666;
}

.blog-clear-filters {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(169, 198, 195, 0.16);
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-post-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.blog-post-card-image {
  height: 220px;
  display: block;
  overflow: hidden;
}

.blog-post-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.blog-post-card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.blog-post-card h3 a {
  color: var(--dark);
  text-decoration: none;
}

.blog-post-card p {
  color: #666;
  line-height: 1.65;
}

.blog-card-tags span {
  cursor: default;
  background: rgba(253, 209, 115, 0.2);
}

.blog-empty-state {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  color: #666;
}

.blog-single-article {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.blog-back-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 22px;
}

.blog-single-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.blog-single-header h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
}

.blog-single-header > p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.blog-single-image {
  height: min(54vw, 460px);
  border-radius: 12px;
  margin-bottom: 38px;
}

.blog-single-content {
  background: var(--white);
  border-radius: 12px;
  padding: 42px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.blog-single-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  margin: 28px 0 12px;
}

.blog-single-content p {
  color: #4b4b4b;
  font-size: 1.04rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.blog-single-content li {
  color: #4b4b4b;
  font-size: 1.04rem;
  line-height: 1.85;
}

.blog-single-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 22px 0 10px;
  color: var(--dark);
}

.blog-single-content ul {
  padding-left: 24px;
  margin: 12px 0 22px;
}

@media (max-width: 980px) {
  .blog-shell {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .blog-filter-group:first-child {
    grid-column: 1 / -1;
  }

  .blog-featured-post {
    grid-template-columns: 1fr;
  }

  .blog-featured-post-content {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .blog-page-section {
    padding: 52px 0;
  }

  .blog-shell,
  .blog-single-article {
    width: min(100% - 24px, 1180px);
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-featured-post-image {
    min-height: 230px;
  }

  .blog-featured-post-content h2,
  .blog-results-header h2 {
    font-size: 1.55rem;
  }

  .blog-results-header {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-single-content {
    padding: 26px 20px;
  }
}
