@charset "UTF-8";

/* Reset: equivalente ao preflight do Tailwind */
*, *::before, *::after {
  box-sizing: border-box;
}

/* =========================
   Base
   ========================= */

   html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Lato', sans-serif;
    background-color: #FDF8F5;
    color: #4A4A4A;
    margin: 0;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* =========================
     Scroll Reveal Animations
     ========================= */

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  
  /* Utilitárias equivalentes às que você usava no Tailwind */
  .bg-pastel {
    background-color: #FDF8F5;
  }
  
  .text-rose-pastel {
    color: #D69E9E;
  }

  .bg-rose-pastel {
    background-color: #D69E9E;
  }
  
  .border-rose-light {
    border-color: #EAC7C7;
  }
  
  /* Tipografia geral */
  .font-serif {
    font-family: 'Lora', serif;
  }
  
  .text-xl {
    font-size: 1.25rem;
  }
  
  .text-4xl {
    font-size: 2.25rem;
    line-height: 1.15;
  }
  
  .text-3xl {
    font-size: 1.875rem;
  }
  
  .text-2xl {
    font-size: 1.5rem;
  }
  
  .text-lg {
    font-size: 1.125rem; /* 18px */
  }
  
  .text-sm {
    font-size: 0.875rem; /* 14px */
  }
  
  .text-xs {
    font-size: 0.75rem;  /* 12px */
  }
  
  .leading-relaxed {
    line-height: 1.625;
  }
  
  /* Cores de texto usadas */
  .text-gray-400 {
    color: #9CA3AF;
  }
  
  .text-gray-500 {
    color: #6B7280;
  }
  
  .text-gray-600 {
    color: #4B5563;
  }
  
  /* Utilitárias simples */
  .font-bold {
    font-weight: 700;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .italic {
    font-style: italic;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Margens e paddings aproximados */
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .mb-8 {
    margin-bottom: 2rem;
  }
  
  .mb-12 {
    margin-bottom: 3rem;
  }
  
  .mb-16 {
    margin-bottom: 4rem;
  }
  
  .mt-4 {
    margin-top: 1rem;
  }
  
  .mt-6 {
    margin-top: 1.5rem;
  }
  
  .mt-20 {
    margin-top: 5rem;
  }
  
  .pt-10 {
    padding-top: 2.5rem;
  }
  
  /* =========================
     Layout genérico (container/grid/flex)
     ========================= */
  
  .max-w-3xl,
  .max-w-4xl,
  .max-w-5xl,
  .max-w-6xl {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .max-w-3xl {
    max-width: 48rem;
  }

  .max-w-4xl {
    max-width: 56rem;
  }

  .max-w-5xl {
    max-width: 64rem;
  }

  .max-w-6xl {
    max-width: 72rem;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .grid {
    display: grid;
  }
  
  .grid-cols-1 {
    grid-template-columns: 1fr;
  }
  
  .gap-6 {
    grid-gap: 1.5rem;
  }
  
  .gap-12 {
    grid-gap: 3rem;
  }
  
  /* Responsividade aproximando o comportamento do Tailwind */
  @media (min-width: 768px) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:flex {
      display: flex;
    }

    .md\:text-5xl {
      font-size: 3rem;
    }
  }

  /* 3 colunas só ativam em ≥ 900px (tablet largo / desktop) */
  @media (min-width: 900px) {
    .md\:grid-cols-3,
    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (min-width: 1024px) {
    .lg\:text-6xl {
      font-size: 3.75rem;
    }
  }
  
  /* Flex utilitário */
  .flex {
    display: flex;
  }
  
  .flex-1 {
    flex: 1 1 0%;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  /* Espaçamentos verticais entre filhos */
  .space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  .space-y-6 > * + * {
    margin-top: 1.5rem;
  }
  
  .space-y-8 > * + * {
    margin-top: 2rem;
  }
  
  /* =========================
     Tamanhos usados nos ícones / caixas
     ========================= */
  
  .w-10 {
    width: 2.5rem;   /* 40px */
  }
  
  .h-10 {
    height: 2.5rem;  /* 40px */
  }
  
  .w-5 {
    width: 1.25rem;  /* 20px */
  }
  
  .h-5 {
    height: 1.25rem; /* 20px */
  }
  
  .w-full {
    width: 100%;
  }
  
  /* Aspect ratio 4/5 (hero image) */
  .aspect-\[4\/5\] {
    /* Robust mobile-friendly aspect box */
    aspect-ratio: 4 / 5;
  }
  
  .rounded-\[60px\] {
    border-radius: 60px;
  }
  
  .border-\[12px\] {
    border-width: 12px;
    border-style: solid;
  }
  
  .shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  /* =========================
     Navbar
     ========================= */

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(214, 158, 158, 0.18);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .navbar.scrolled {
    background: rgba(253, 248, 245, 0.98);
    box-shadow: 0 2px 20px rgba(214, 158, 158, 0.12);
  }
  
  .navbar-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Menu desktop */
  .nav-menu {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
  }
  
  .nav-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
  }
  
  .nav-link:hover {
    color: #D69E9E;
  }
  
  .nav-brand {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #D69E9E;
    letter-spacing: -0.025em;
  }

  .nav-crp {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9CA3AF;
    font-weight: 500;
  }

  .nav-cta {
    display: none;
    background-color: #D69E9E;
    color: #ffffff;
    padding: 0.625rem 1.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    align-items: center;
  }

  .nav-cta:hover {
    background-color: #C58A8A;
  }

  /* Navbar desktop: só ativa em ≥ 1024px */
  @media (min-width: 1024px) {
    .nav-menu {
      display: flex;
    }

    .nav-cta {
      display: flex;
    }

    .nav-hamburger {
      display: none !important;
    }
  }

  /* =========================
     Hamburger button
     ========================= */

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
  }

  .nav-hamburger:hover {
    background-color: rgba(214, 158, 158, 0.1);
  }

  .hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #D69E9E;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                width 0.3s ease;
    transform-origin: center;
  }

  /* Estado aberto: transforma em X */
  .nav-hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .nav-hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* =========================
     Mobile Drawer
     ========================= */

  .nav-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #FDF8F5;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  }

  .nav-mobile-drawer.is-open {
    transform: translateX(0);
  }

  .nav-mobile-inner {
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 3rem;
    gap: 0.5rem;
    flex: 1;
  }

  .nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
  }

  .nav-mobile-link {
    display: block;
    padding: 0.9rem 1rem;
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #4A4A4A;
    text-decoration: none;
    border-radius: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
    letter-spacing: -0.01em;
  }

  .nav-mobile-link:hover,
  .nav-mobile-link:active {
    background-color: #F5E1E1;
    color: #D69E9E;
  }

  .nav-mobile-cta {
    display: block;
    margin-top: 1.5rem;
    background-color: #D69E9E;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(214, 158, 158, 0.5);
    transition: background-color 0.2s ease, transform 0.2s ease;
    line-height: 1.4;
  }

  .nav-mobile-cta:active {
    background-color: #C58A8A;
    transform: scale(0.98);
  }

  /* Overlay escurece o fundo */
  .nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 199;
    pointer-events: none;
    transition: background-color 0.38s ease;
  }

  .nav-mobile-overlay.is-open {
    background: rgba(0, 0, 0, 0.4);
    pointer-events: auto;
  }

  /* Bloqueia scroll do body quando drawer está aberto */
  body.menu-open {
    overflow: hidden;
  }

  /* =========================
     Hero
     ========================= */

  .hero-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    overflow: hidden;
  }

  /* Gradient mesh background */
  .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 85% 20%, rgba(214, 158, 158, 0.13) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 10% 90%, rgba(245, 225, 225, 0.18) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-section > * {
    position: relative;
    z-index: 1;
  }

  /* Tablet (768–899px) */
  @media (min-width: 768px) {
    .hero-section {
      padding-top: 7rem;
      padding-bottom: 2rem;
      padding-left: 3rem;
      padding-right: 3rem;
    }
  }

  /* Desktop (900px+) */
  @media (min-width: 900px) {
    .hero-section {
      padding-top: 8rem;
      padding-bottom: 5rem;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }
  
  .hero-container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* Layout side-by-side só em ≥ 1024px */
  @media (min-width: 1024px) {
    .hero-container {
      flex-direction: row;
      align-items: center;
      gap: 4rem;
    }
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 9999px;
    background-color: #F5E1E1;
    color: #C58A8A;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(214, 158, 158, 0.25);
    max-width: 100%;
    flex-wrap: wrap;
    animation: badge-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @media (min-width: 480px) {
    .hero-badge {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
    }
  }

  @keyframes badge-in {
    from { opacity: 0; transform: translateY(-8px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .hero-title {
    font-family: 'Lora', serif;
    font-size: 1.7rem;
    line-height: 1.28;
    font-weight: 400;
    color: #3D3535;
    letter-spacing: -0.01em;
    /* Staggered reveal */
    animation: title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  }

  @keyframes title-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Tablet empilhado: título pode usar toda a largura */
  @media (min-width: 768px) {
    .hero-title {
      font-size: 2.6rem;
      letter-spacing: -0.02em;
    }
  }

  @media (min-width: 900px) {
    .hero-title {
      font-size: 2.9rem;
      letter-spacing: -0.02em;
    }
  }

  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3.35rem;
      letter-spacing: -0.025em;
    }
  }

  .hero-description {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.7;
    max-width: 32rem;
    animation: title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  }

  .hero-note {
    display: block;
    font-size: 0.73rem;
    color: #B0B7C3;
    line-height: 1.6;
    animation: title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
  }

  /* Mobile (< 640px): hero centralizado */
  @media (max-width: 639px) {
    .hero-container {
      align-items: center;
      text-align: center;
    }

    .hero-description {
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      justify-content: center;
    }

    .hero-actions .btn-primary {
      width: 100%;
      padding: 1.1rem 1.5rem;
      font-size: 1rem;
    }
  }

  /* Tablet / pré-desktop (768–1023px): layout empilhado centralizado */
  @media (min-width: 768px) and (max-width: 1023px) {
    .hero-container {
      align-items: center;
      text-align: center;
    }

    .hero-image-wrapper {
      max-width: 280px;
    }

    .hero-description {
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      justify-content: center;
    }

    .hero-actions .btn-primary {
      width: auto;
    }

    .hero-badge {
      display: inline-flex;
    }
  }

  @media (min-width: 640px) and (max-width: 767px) {
    .hero-actions {
      flex-direction: row;
    }
  }

  .hero-image-wrapper {
    flex: 1 1 0%;
    position: relative;
    /* Mobile: foto maior e mais impactante */
    order: -1;
    width: 68vw;
    max-width: 280px;
    align-self: center;
  }

  @media (min-width: 480px) {
    .hero-image-wrapper {
      width: 60vw;
      max-width: 300px;
    }
  }

  /* Desktop: foto sem restrição de largura */
  @media (min-width: 1024px) {
    .hero-image-wrapper {
      order: 0;
      width: auto;
      max-width: none;
      align-self: auto;
    }
  }

  .hero-image-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #ffffff;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
    border: 10px solid #ffffff;
    box-shadow:
      0 30px 60px -15px rgba(214, 158, 158, 0.3),
      0 0 0 1px rgba(214, 158, 158, 0.12);
    animation: photo-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
  }

  .hero-image-frame:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow:
      0 40px 70px -15px rgba(214, 158, 158, 0.35),
      0 0 0 1px rgba(214, 158, 158, 0.18);
  }

  @keyframes photo-in {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  @media (max-width: 767px) {
    .hero-image-frame {
      border-radius: 40px;
      border-width: 7px;
    }
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  /* =========================
     Botões
     ========================= */
  
  .btn-primary {
    display: inline-block;
    background-color: #D69E9E;
    color: #ffffff;
    padding: 1rem 2.1rem;
    border-radius: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    box-shadow:
      0 8px 24px -8px rgba(214, 158, 158, 0.65),
      0 1px 0 0 rgba(255,255,255,0.18) inset;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background-color 0.25s ease,
                transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.25s ease;
    animation: title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  }

  .btn-primary:hover {
    background-color: #C78A8A;
    transform: translateY(-2px);
    box-shadow:
      0 14px 32px -8px rgba(214, 158, 158, 0.7),
      0 1px 0 0 rgba(255,255,255,0.18) inset;
  }

  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px -4px rgba(214, 158, 158, 0.5);
  }
  
  /* Botão do footer */
  .footer-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #C58A8A;
    padding: 1rem 1.75rem;
    max-width: 100%;
    border-radius: 1.25rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    transition: box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    letter-spacing: 0.01em;
  }

  .footer-btn:hover {
    box-shadow: 0 20px 48px rgba(0,0,0,0.18);
    transform: translateY(-3px);
  }

  .footer-btn:active {
    transform: translateY(-1px);
  }
  
  /* Botão flutuante WhatsApp */
  .btn-whatsapp-floating {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background-color: #25D366;
    color: #ffffff;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    z-index: 50;
  }
  
  .btn-whatsapp-floating:hover {
    transform: scale(1.1);
  }
  
  /* =========================
     Seções
     ========================= */
  
  .section-default {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  @media (min-width: 768px) {
    .section-default {
      padding-top: 4.5rem;
      padding-bottom: 4.5rem;
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  @media (min-width: 900px) {
    .section-default {
      padding-top: 5rem;
      padding-bottom: 5rem;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }
  
  /* Especialidades */
  .card-specialty {
    background-color: #ffffff;
    border: 1px solid rgba(234, 199, 199, 0.28);
    border-radius: 36px;
    padding: 2rem;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.3s ease,
      box-shadow 0.35s ease;
    box-shadow:
      0 1px 3px rgba(0,0,0,0.04),
      0 4px 16px rgba(214, 158, 158, 0.06);
  }

  .card-specialty:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 158, 158, 0.55);
    box-shadow:
      0 4px 16px rgba(0,0,0,0.06),
      0 16px 40px -8px rgba(214, 158, 158, 0.22);
  }

  a.card-specialty {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  /* =========================
     Especialidades
     ========================= */

  .especialidades-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: #F9F1F0;
  }

  @media (min-width: 768px) {
    .especialidades-section {
      padding-top: 5rem;
      padding-bottom: 5rem;
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  @media (min-width: 900px) {
    .especialidades-section {
      padding-top: 6rem;
      padding-bottom: 6rem;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }

  .especialidades-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #3D3535;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .especialidades-title { font-size: 2.5rem; }
  }

  .especialidade-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: linear-gradient(135deg, #FDF0EF 0%, #F5E1E1 100%);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #D69E9E;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease;
  }

  .card-specialty:hover .especialidade-icon {
    transform: scale(1.1) rotate(-4deg);
    background: linear-gradient(135deg, #F5E1E1 0%, #EAC7C7 100%);
  }

  .especialidade-nome {
    font-weight: 700;
    color: #3D3535;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }

  .tcc-box {
    background-color: #ffffff;
    padding: 1.75rem 1.5rem;
    border-radius: 28px;
    box-shadow:
      0 2px 8px rgba(214, 158, 158, 0.08),
      0 12px 40px rgba(214, 158, 158, 0.07);
    border: 1px solid rgba(234, 199, 199, 0.22);
  }

  /* Tablet estreito */
  @media (min-width: 768px) {
    .tcc-box {
      padding: 2.75rem;
      border-radius: 44px;
    }
  }

  /* Tablet largo / desktop */
  @media (min-width: 900px) {
    .tcc-box {
      padding: 4rem;
      border-radius: 52px;
    }
  }

  /* =========================
     Sobre
     ========================= */

  .sobre-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #3D3535;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .sobre-title { font-size: 2.5rem; }
  }

  .sobre-card {
    background-color: #ffffff;
    padding: 1.75rem 1.5rem;
    border-radius: 28px;
    box-shadow:
      0 2px 8px rgba(214, 158, 158, 0.08),
      0 12px 40px rgba(214, 158, 158, 0.07);
    border: 1px solid rgba(234, 199, 199, 0.22);
    transition: box-shadow 0.3s ease;
  }

  .sobre-card:hover {
    box-shadow:
      0 4px 16px rgba(214, 158, 158, 0.12),
      0 20px 50px rgba(214, 158, 158, 0.1);
  }

  /* Tablet estreito */
  @media (min-width: 768px) {
    .sobre-card {
      padding: 2.75rem;
      border-radius: 44px;
    }
  }

  /* Tablet largo / desktop */
  @media (min-width: 900px) {
    .sobre-card {
      padding: 4rem;
      border-radius: 52px;
    }
  }

  /* =========================
     Método
     ========================= */

  .metodo-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: #FDF8F5;
  }

  @media (min-width: 768px) {
    .metodo-section {
      padding-top: 4.5rem;
      padding-bottom: 4.5rem;
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  @media (min-width: 900px) {
    .metodo-section {
      padding-top: 6rem;
      padding-bottom: 6rem;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }

  .metodo-number {
    font-family: 'Lora', serif !important;
    font-size: 2.25rem !important;
    line-height: 2.5rem;
    font-weight: bold;
    color: rgba(214, 158, 158,0.6) !important;
  }

  /* =========================
     Agenda / Horários
     ========================= */

  .agenda-section {
    padding: 3.5rem 1rem 4rem;
    background-color: #ffffff;
  }

  @media (min-width: 768px) {
    .agenda-section {
      padding: 6rem 1.5rem;
    }
  }

  .agenda-title {
    font-family: 'Lora', serif;
    font-size: 2.25rem;
    font-weight: 700;
    font-style: italic;
    color: #D69E9E;
    margin-bottom: 1rem;
  }

  /* Loading */
  .agenda-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    color: #9CA3AF;
    font-size: 0.875rem;
  }

  .agenda-spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid #EAC7C7;
    border-top-color: #D69E9E;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Erro */
  .agenda-error {
    background-color: #FFF5F5;
    border: 1px solid #EAC7C7;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
  }

  .agenda-error a {
    color: #D69E9E;
    font-weight: 600;
    text-decoration: none;
  }

  /* Navegação semanas */
  .agenda-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .agenda-nav-btn {
    background: none;
    border: 1px solid #EAC7C7;
    color: #D69E9E;
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
  }

  .agenda-nav-btn:hover:not(:disabled) {
    background-color: #D69E9E;
    color: #ffffff;
  }

  .agenda-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
  }

  .agenda-semana-label {
    font-size: 0.78rem;
    color: #6B7280;
    font-weight: 500;
    text-align: center;
    flex: 1;
  }

  /* Grade */
  .agenda-grid {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
  }

  .agenda-dia {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .agenda-dia-nome {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #4A4A4A;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #EAC7C7;
    line-height: 1.4;
  }

  .agenda-dia-nome span {
    font-weight: 400;
    color: #9CA3AF;
    font-size: 0.6rem;
  }

  .agenda-slots {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .agenda-slot {
    border-radius: 8px;
    padding: 0.35rem 0.15rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-align: center;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 480px) {
    .agenda-slot {
      min-height: 2rem;
      font-size: 0.7rem;
    }
  }

  .slot-livre {
    background-color: #E8F5E9;
    color: #388E3C;
    border: 1px solid #C8E6C9;
  }

  .slot-ocupado {
    background-color: #F5F5F5;
    color: #BDBDBD;
    border: 1px solid #EEEEEE;
  }

  .slot-quinzenal {
    background-color: #FFF8E1;
    color: #F59E0B;
    border: 1px solid #FDE68A;
    flex-direction: column;
    gap: 0.1rem;
  }

  .slot-quinzenal-label {
    display: block;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #D97706;
    line-height: 1;
  }

  .slot-passado {
    background-color: #FAFAFA;
    color: #E0E0E0;
    border: 1px solid #F5F5F5;
  }

  /* Aviso de sem vagas */
  .agenda-sem-vagas {
    width: 100%;
    text-align: center;
    padding: 2rem;
    color: #9CA3AF;
    font-size: 0.875rem;
  }

  .agenda-sem-vagas a {
    color: #D69E9E;
    font-weight: 600;
    text-decoration: none;
  }

  /* Aviso de placeholder */
  .agenda-placeholder-aviso {
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: #D69E9E;
    background-color: #FFF5F5;
    border: 1px dashed #EAC7C7;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-style: italic;
  }

  /* =========================
     FAQ
     ========================= */
  
  /* FAQ */
  #faq {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: #FDF8F5;
  }

  @media (min-width: 768px) {
    #faq {
      padding-top: 4.5rem;
      padding-bottom: 4.5rem;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }

  @media (min-width: 900px) {
    #faq {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
  }

  .faq-title {
    font-family: 'Lora', serif;
    font-size: 1.6rem !important;
    font-weight: 700;
    text-align: center !important;
    margin-bottom: 2rem;
    font-style: italic;
    color: #D69E9E !important;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .faq-title {
      font-size: 1.875rem !important;
      margin-bottom: 4rem;
    }
  }

  .faq-card {
    display: block !important;
    background-color: #ffffff !important;
    padding: 1.1rem 1.25rem !important;
    border-radius: 20px !important;
    border: 1px solid rgba(234, 199, 199, 0.2) !important;
    cursor: pointer;
    outline: none !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 4px 12px rgba(214,158,158,0.05) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1) !important;
  }

  .faq-card:hover {
    border-color: rgba(214, 158, 158, 0.4) !important;
    box-shadow: 0 4px 20px rgba(214, 158, 158, 0.12) !important;
    transform: translateY(-1px);
  }

  @media (min-width: 768px) {
    .faq-card {
      padding: 1.5rem !important;
      border-radius: 28px !important;
    }
  }

  .faq-summary {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    list-style: none !important;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    font-size: 0.95rem;
    color: #3D3535;
    letter-spacing: -0.01em;
  }

  .faq-summary::-webkit-details-marker {
    display: none;
  }

  /* text-rose-pastel text-2xl transition-transform + group-open:rotate-45 */
  .faq-icon {
    color: #D69E9E;
    font-size: 1.5rem;
    flex-shrink: 0;
    display: inline-block !important;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .faq-card[open] .faq-icon {
    transform: rotate(45deg);
  }

  /* mt-4 text-gray-500 text-sm leading-relaxed */
  .faq-answer {
    margin-top: 1rem;
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.625;
  }
  
  /* =========================
     Footer
     ========================= */

  .footer {
    background: linear-gradient(160deg, #D69E9E 0%, #C98B8B 100%);
    color: #ffffff;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    text-align: center;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 300;
    position: relative;
    overflow: hidden;
  }

  .footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .footer > * { position: relative; }

  .footer-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  /* Tablet: título menor para não quebrar em 2 linhas curtas */
  @media (min-width: 768px) {
    .footer-title { font-size: 2.1rem; }
  }

  @media (min-width: 900px) {
    .footer-title { font-size: 2.5rem; }
  }

  /* Tablet: padding e botão controlados */
  @media (min-width: 768px) {
    .footer {
      padding-top: 4.5rem;
      padding-bottom: 3rem;
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .footer-btn {
      padding: 1rem 2.5rem;
      max-width: 28rem;
      width: 100%;
    }
  }

  @media (min-width: 900px) {
    .footer {
      padding-top: 5rem;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }

    .footer-btn {
      width: auto;
      max-width: none;
    }
  }

  .footer-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 1;
    font-family: 'Lato', sans-serif;
    color: #555;
  }

  .footer-divider {
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    opacity: 0.8;
  }

  .footer-name {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
  }

  .footer-tagline {
    margin-top: 1rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.2em;
    color: #555;
    opacity: 1;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.75rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .footer-social-link:hover {
    color: #ffffff;
  }

  .footer-social-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .opacity-80 {
    opacity: 0.8;
  }
  
  /* Textos longos */
  p {
    line-height: 1.6;
    color: #555555;
  }

  /* =========================
     Modal de confirmação de slot
     ========================= */

  .slot-livre,
  .slot-quinzenal {
    cursor: pointer;
  }

  .slot-livre:hover,
  .slot-quinzenal:hover {
    filter: brightness(0.92);
  }

  .slot-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .slot-modal {
    background: #ffffff;
    border-radius: 32px;
    padding: 2rem;
    max-width: 22rem;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .slot-modal-pre {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }

  .slot-modal-horario {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4A4A4A;
    margin: 0;
    line-height: 1.2;
  }

  .slot-modal-aviso {
    font-size: 0.75rem;
    color: #D97706;
    background: #FFF8E1;
    border: 1px solid #FDE68A;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    margin: 0;
  }

  .slot-modal-mensagem-label {
    font-size: 0.7rem;
    color: #9CA3AF;
    margin: 0.25rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  .slot-modal-mensagem {
    font-size: 0.82rem;
    color: #4B5563;
    background: #F9F1F0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
  }

  .slot-modal-acoes {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .slot-modal-btn-cancelar {
    flex: 1;
    background: none;
    border: 1px solid #EAC7C7;
    color: #9CA3AF;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .slot-modal-btn-cancelar:hover {
    background-color: #FDF8F5;
  }

  .slot-modal-btn-confirmar {
    flex: 2;
    background-color: #25D366;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s;
  }

  .slot-modal-btn-confirmar:hover {
    background-color: #1ebe5d;
  }

/* =========================
   Feedbacks / Depoimentos
   ========================= */

.feedbacks-section {
  background-color: #F9F1F0;
  padding: 6rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Aspas decorativas gigantes no fundo */
.feedbacks-section::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 28rem;
  line-height: 1;
  color: rgba(214, 158, 158, 0.055);
  position: absolute;
  top: -4rem;
  left: -2rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.feedbacks-inner {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Cabeçalho */
.feedbacks-header {
  text-align: center;
  margin-bottom: 4rem;
}

.feedbacks-title {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3D3535;
  line-height: 1.25;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .feedbacks-title {
    font-size: 2.5rem;
  }
}

.feedbacks-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #6B7280;
  max-width: 65rem;
  margin: 0 auto;
  line-height: 1.8;
 
}

.feedbacks-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Grade de cards */
.feedbacks-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Cards secundários: CSS columns para layout masonry nativo.
   Cada card ocupa sua altura natural — sem espaço vazio por uniformização. */
.feedbacks-cols {
  columns: 1;
  column-gap: 1.25rem;
}

@media (min-width: 640px) {
  .feedbacks-cols {
    columns: 2;
  }
}

.feedbacks-cols .feedback-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

.feedbacks-cols .feedback-card:last-child {
  margin-bottom: 0;
}

/* Card base */
.feedback-card {
  background: #ffffff;
  border: 1px solid rgba(234, 199, 199, 0.35);
  border-radius: 36px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

/* Linha de acento no topo de cada card */
.feedback-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214, 158, 158, 0.55), transparent);
  border-radius: 0 0 2px 2px;
}

.feedback-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 158, 158, 0.55);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 16px 40px -8px rgba(214, 158, 158, 0.22);
}

/* Card destaque */
.feedback-card--destaque {
  background: linear-gradient(150deg, #ffffff 0%, #FDF8F5 60%, #F9F1F0 100%);
  border-color: rgba(214, 158, 158, 0.45);
}

.feedback-card--destaque::before {
  background: linear-gradient(90deg, transparent, rgba(214, 158, 158, 0.8), transparent);
}

@media (min-width: 640px) {
  .feedback-card--destaque {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
  }
  .feedback-card--destaque .feedback-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .feedback-card--destaque .feedback-quote-mark {
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .feedback-card--destaque {
    padding: 2.5rem 3rem;
    gap: 2.5rem;
  }
}

/* Aspas decorativas do card */
.feedback-quote-mark {
  font-family: 'Lora', serif;
  font-size: 4rem;
  line-height: 1;
  color: #EAC7C7;
  font-style: italic;
  user-select: none;
  margin-bottom: -0.5rem;
}

.feedback-card--destaque .feedback-quote-mark {
  font-size: 5.5rem;
  color: #D69E9E;
  opacity: 0.6;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* Texto do depoimento — Lora serif para intimidade e credibilidade */
.feedback-text {
  font-family: 'Lora', serif;
  font-size: 0.9375rem;
  font-style: italic;
  color: #4B5563;
  line-height: 1.8;
  flex: 1;
  margin: 0;
}

.feedback-card--destaque .feedback-text {
  font-size: 1rem;
  color: #3D3535;
}

/* Rodapé do card */
.feedback-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(234, 199, 199, 0.35);
}

.feedback-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #EAC7C7 0%, #D69E9E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 4.5px rgba(214, 158, 158, 0.35);
}

.feedback-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.feedback-author-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3D3535;
  line-height: 1.3;
}

.feedback-author-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: #B0B7C3;
  line-height: 1.3;
  letter-spacing: 0.02em;
}