/* ===========================
   CSS Variables
   =========================== */
:root {
    /* Rose Pastel Color Palette - Principal */
    --rose-primary: #E8B4B8;
    --rose-light: #F5D7D9;
    --rose-lighter: #FAE8EA;
    --rose-lightest: #FDF5F6;
    --rose-dark: #D89EA3;
    --rose-darker: #C88A8F;

    /* Sage Green - Accent Colors */
    --sage-accent: #8FA894;
    --sage-light: #B8CDBF;
    --sage-lighter: #D4E3D9;
    --sage-lightest: #E8F0EA;

    /* Complementary Colors */
    --cream: #FAF8F3;
    --warm-white: #FEFDFB;
    --soft-peach: #F5E6E0;
    --text-dark: #4A3C3E;
    --text-medium: #6B5A5C;
    --text-light: #9A8A8D;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(232, 180, 184, 0.12);
    --shadow-md: 0 4px 16px rgba(232, 180, 184, 0.18);
    --shadow-lg: 0 8px 32px rgba(232, 180, 184, 0.24);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Mobile-first: fonte maior para melhor legibilidade */
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Desktop: reduz fonte base */
@media (min-width: 1024px) {
    html {
        font-size: 16px;
    }
}

/* ===========================
   Accessibility Styles
   =========================== */
/* Visually Hidden - esconde visualmente mas mantém acessível para leitores de tela */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip Links */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--rose-darker);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--text-dark);
    outline-offset: 2px;
}

/* Focus Styles - Visíveis e consistentes */
*:focus-visible {
    outline: 3px solid var(--rose-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--rose-primary);
    outline-offset: 3px;
}

/* Garante que elementos interativos tenham cursor pointer */
button,
a,
[role="button"],
[tabindex="0"] {
    cursor: pointer;
}

/* Redução de movimento para usuários com preferências de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Alto contraste para modo de alto contraste do sistema */
@media (prefers-contrast: high) {
    :root {
        --rose-primary: #C88A8F;
        --text-dark: #000000;
    }
}

/* Estilo de seleção de texto */
::selection {
    background-color: var(--rose-light);
    color: var(--text-dark);
}

::-moz-selection {
    background-color: var(--rose-light);
    color: var(--text-dark);
}

html {
    scroll-behavior: smooth;
    /* Mobile-first: fonte maior para melhor legibilidade */
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Desktop: reduz fonte base */
@media (min-width: 1024px) {
    html {
        font-size: 16px;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   Animation Classes
   =========================== */
.will-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate.animated-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Typography - Mobile First
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 600;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rose-darker);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 1.875rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-medium);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   Container - Mobile First
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* ===========================
   Buttons - Mobile First
   =========================== */
.btn {
    display: inline-block;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose-darker) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--rose-darker) 0%, #B07378 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Estilo para a brincadeira amar i gestar (amar e gestar) */
.amar {
    color: var(--rose-primary);
    font-weight: 600;
}

.i-dot {
    color: var(--rose-primary);
    font-weight: 700;
    position: relative;
    margin: 0 1px;
}

/* Enfatizar que o "i" representa "e" com um sublinhado mais visível */
.i-dot::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--rose-primary);
    border-radius: 2px;
    opacity: 1;
}

.dot {
    color: var(--rose-dark);
    font-weight: 700;
    margin: 0 2px;
}

.gestar {
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
}

.specialty {
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 400;
    margin-left: 0.5rem;
    opacity: 0.7;
    font-style: normal;
    letter-spacing: 0.5px;
}

.logo-text strong {
    // ...existing code...
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--rose-primary);
    transition: all var(--transition-fast);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rose-primary);
    transition: width var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--rose-primary);
}

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

/* ===========================
   Hero Section - Mobile First
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 3rem;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

/* Decoração de fundo - oculta no mobile */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--rose-lighter) 0%, transparent 70%);
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Trust Badge - Prova Social */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
}

.trust-icon {
    background: #2E7D32;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.15;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* Lista de Benefícios - Mobile First: Container centralizado, itens alinhados */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    width: 100%;
}

.benefit-icon {
    background: var(--rose-primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    font-weight: 700;
}

/* CTA Group - Centralizado no mobile */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

/* Botão menor no hero */
.hero-cta-group .btn {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    width: auto;
    max-width: none;
}

.btn-pulse {
    animation: subtle-pulse 2s infinite;
    position: relative;
}

@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(232, 180, 184, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(232, 180, 184, 0.5);
    }
}

.hero-cta-note {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 280px;
}

/* Círculos decorativos - menores no mobile */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    z-index: -1;
}

.circle-large {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--rose-lighter) 0%, var(--rose-light) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-together 7s ease-in-out infinite;
}

.circle-medium {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--rose-primary) 0%, var(--rose-dark) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-together 7s ease-in-out infinite;
}

.hero-icon {
    width: 100%;
    max-width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.hero-icon:hover {
    filter: brightness(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-together {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Oculto no mobile */
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--rose-primary), transparent);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ===========================
   Social Proof Bar - Conversão
   =========================== */
.social-proof-bar {
    background: linear-gradient(135deg, var(--rose-lightest) 0%, var(--warm-white) 100%);
    padding: 2rem 1rem;
    border-top: 1px solid var(--rose-lighter);
    border-bottom: 1px solid var(--rose-lighter);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.proof-stat {
    text-align: center;
    padding: 1rem 0.75rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.proof-stat:hover {
    transform: translateY(-3px);
}

.proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-darker);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.proof-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.3;
}

/* ===========================
   About Section - Mobile First
   =========================== */
.about {
    padding: 3rem 1.25rem 2.5rem;
    background-color: var(--warm-white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
}

.about-image {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--rose-lighter) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
}

/* Fade equilibrado nas bordas da foto */
.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        transparent 75%,
        rgba(253, 245, 246, 0.4) 88%,
        rgba(253, 245, 246, 0.7) 96%,
        rgba(253, 245, 246, 0.9) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.about-text {
    min-height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0.5rem;
}

/* Nome e Cargo em Destaque */
.about-text .section-title {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 1px 2px rgba(255, 255, 255, 0.9));
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 0.5rem;
}

.nurse-subtitle {
    font-size: 1rem;
    color: #D6949A;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow:
        0 1px 3px rgba(255, 255, 255, 0.95),
        0 2px 6px rgba(255, 255, 255, 0.8),
        1px 1px 4px rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-description {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    position: relative;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    transition: all var(--transition-normal);
    height: auto;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    border: 1px solid rgba(232, 180, 184, 0.3);
    box-shadow: 0 2px 8px rgba(232, 180, 184, 0.15);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    margin: 0;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #E8B4B8 0%, #D6949A 100%);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    border-radius: 16px 16px 0 0;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(232, 180, 184, 0.25);
    border-color: rgba(214, 148, 154, 0.5);
    background: rgba(255, 255, 255, 0.8);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:nth-child(1) {
    background: rgba(255, 251, 252, 0.6);
}

.stat-item:nth-child(1) .stat-number {
    color: #D6949A;
}

.stat-item:nth-child(2) {
    background: rgba(255, 245, 246, 0.6);
}

.stat-item:nth-child(2) .stat-number {
    color: #C97C84;
}

.stat-item:nth-child(3) {
    background: rgba(255, 238, 241, 0.6);
}

.stat-item:nth-child(3) .stat-number {
    color: #B8757E;
    font-weight: 700;
}

.stat-number {
    font-family: var(--font-body);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--rose-primary);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.5px;
}

.stat-number-small {
    font-size: 1.25rem;
    letter-spacing: 0;
}

.stat-label {
    font-size: 0.7rem;
    color: #8A7175;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    margin: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    opacity: 0.9;
}

/* ===========================
   Nurse Tabs (Sobre Nós - Duas Enfermeiras)
   =========================== */
/* Dots de navegação entre enfermeiras - Mobile First */
.nurse-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 0 4rem 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.nurse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rose-lighter);
    border: 2px solid var(--rose-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.nurse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--rose-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nurse-dot:hover::after {
    width: 6px;
    height: 6px;
}

.nurse-dot.active {
    background: var(--rose-primary);
    width: 32px;
    border-radius: 6px;
}

.nurse-dot.active::after {
    display: none;
}


/* Container com sobreposição */
.nurses-container {
    position: relative;
    min-height: 600px;
    touch-action: pan-y;
    margin-top: 2rem;
}

.nurses-container.dragging {
    cursor: grabbing;
}

/* Setas de navegação - escondidas no mobile, visíveis no desktop */
.nurse-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--rose-primary);
    color: var(--rose-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.nurse-arrow:hover {
    background: var(--rose-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(232, 180, 184, 0.4);
}

.nurse-arrow-left {
    left: -70px;
}

.nurse-arrow-right {
    right: -70px;
}

/* Conteúdo das enfermeiras - Mobile First: Desliza da direita */
.nurse-content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.nurse-content.active {
    display: block;
    opacity: 1;
    animation: slideInFromRight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================
   Instagram Section
   =========================== */
.instagram {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--rose-lightest) 100%);
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-post {
    background-color: var(--warm-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
}

.instagram-post:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.instagram-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--rose-lightest);
}

.instagram-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(143, 168, 148, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: var(--spacing-md);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-caption {
    padding: var(--spacing-md);
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    text-align: center;
}

.instagram-cta {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.btn-instagram svg {
    flex-shrink: 0;
}

/* ===========================
   Services Section - Mobile First
   =========================== */
.services {
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom, var(--warm-white), var(--rose-lightest), var(--rose-lighter));
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-category {
    margin-bottom: 3rem;
}

.services-category:last-child {
    margin-bottom: 0;
}

.services-category-title {
    font-family: var(--font-display);
    font-size: 1.625rem;
    color: var(--rose-dark);
    text-align: center;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.services-category-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background-color: var(--rose-lightest);
    border-radius: var(--radius-md);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid var(--rose-lightest);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Hover apenas no desktop */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--rose-primary);
    }
}

.service-card:nth-child(odd) .service-icon circle:first-child {
    fill: var(--rose-lightest);
}

.service-card:nth-child(odd) .service-icon path {
    fill: var(--rose-primary);
}

.service-card:nth-child(even) .service-icon circle:first-child {
    fill: var(--rose-lighter);
}

.service-card:nth-child(even) .service-icon path {
    fill: var(--rose-dark);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
}

.service-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-description {
    color: var(--text-medium);
    line-height: 1.65;
    font-size: 1rem;
}

.service-tap-hint {
    display: none;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--rose-lighter);
    color: var(--text-medium);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.service-card:active .service-tap-hint {
    opacity: 0.9;
}

/* Mostrar indicador apenas no mobile */
@media (max-width: 768px) {
    .service-tap-hint {
        display: block;
    }
}

/* ===========================
   Evidence Section
   =========================== */
.evidence-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--rose-lightest) 0%, var(--warm-white) 100%);
}

.evidence-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--rose-primary);
}

.evidence-icon {
    flex-shrink: 0;
}

.evidence-text {
    flex: 1;
}

.evidence-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--rose-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.evidence-description {
    font-size: 1.0625rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.evidence-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.evidence-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.evidence-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.evidence-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rose-lighter);
}

/* ===========================
   Differentials Section - Mobile First
   =========================== */
.differentials {
    padding: 3rem 1.5rem;
    background-color: var(--warm-white);
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.differential-card {
    padding: 2rem 1.5rem;
    background-color: var(--rose-lightest);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.differential-card:hover {
    background-color: var(--rose-lighter);
    transform: scale(1.02);
}

.differential-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: transform var(--transition-normal);
}

.differential-card:hover .differential-icon {
    transform: scale(1.05);
}

.differential-icon img {
    /* Ajuste de cor para tom rosa pastel */
    filter: sepia(0.3) saturate(0.8) hue-rotate(320deg) brightness(1.1) drop-shadow(0 2px 8px rgba(232, 180, 184, 0.2));
    transition: transform var(--transition-normal), filter var(--transition-normal);
}

.differential-card:hover .differential-icon img {
    transform: scale(1.05);
    filter: sepia(0.3) saturate(0.9) hue-rotate(320deg) brightness(1.15) drop-shadow(0 4px 12px rgba(232, 180, 184, 0.3));
}

.differential-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.differential-card p {
    color: var(--text-medium);
    transform: translateY(0);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===========================
   CTA Section - Alta Conversão
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--rose-primary) 0%, var(--rose-darker) 100%);
    padding: 3.5rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.cta-description {
    font-size: 1.0625rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.cta-feature-icon {
    font-size: 1.25rem;
}

.btn-large {
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-section .btn-primary {
    background: white;
    color: var(--rose-darker);
    margin-bottom: 1rem;
}

.cta-section .btn-primary:hover {
    background: var(--warm-white);
    transform: translateY(-3px);
}

.cta-guarantee {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
    font-style: italic;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--rose-lightest) 0%, var(--rose-lighter) 50%, var(--rose-lightest) 100%);
    overflow-x: clip;
}

/* Photo Gallery - Infinite Carousel */
.photo-gallery-wrapper {
    margin: 0 0 var(--spacing-md);
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 20px 0;
}

.photo-gallery {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
    padding-left: 0;
}

/* Pausar quando hover em qualquer item da galeria */
.gallery-item:hover ~ .gallery-item,
.gallery-item:hover,
.gallery-item:has(~ .gallery-item:hover) {
    animation-play-state: paused;
}

.photo-gallery:has(.gallery-item:hover) {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollReverse {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.gallery-item {
    flex-shrink: 0;
    width: 350px;
    height: 400px;
    margin-left: -50px;
    transition: transform 0.2s ease-out, z-index 0s;
    cursor: pointer;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.gallery-item:first-child {
    margin-left: 0;
}

/* Remover hover zoom - mantém apenas o zoom automático central */


.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: white;
    transition: box-shadow 0.4s ease;
    position: relative;
}

.gallery-item:hover .gallery-image-placeholder {
    box-shadow: 0 12px 40px rgba(232, 180, 184, 0.35);
}

.gallery-image-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--warm-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--rose-primary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--rose-light);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-display);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--rose-lightest);
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--rose-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===========================
   FAQ Section - Mobile First
   =========================== */
.faq {
    padding: 3rem 1.5rem;
    background-color: var(--warm-white);
}

.faq-list {
    max-width: 100%;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--rose-lightest);
    margin-bottom: 0.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition-fast);
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--rose-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--rose-primary);
    font-weight: 300;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.75;
    font-size: 1rem;
}

.faq-cta {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--rose-lightest) 0%, var(--rose-lighter) 100%);
    border-radius: var(--radius-md);
    text-align: center;
}

.faq-cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

/* ===========================
   Contact Section - Mobile First
   =========================== */
.contact {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--rose-lightest) 0%, var(--warm-white) 100%);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-description {
    font-size: 1.0625rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* WhatsApp Highlight */
.contact-whatsapp-highlight {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border-left: 4px solid #25D366;
}

.contact-whatsapp-highlight h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.contact-whatsapp-highlight p {
    color: #2E7D32;
    font-size: 0.9375rem;
    margin: 0;
}

.whatsapp-link {
    color: #1B5E20;
    text-decoration: underline;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #25D366;
}

/* Contact Benefits */
.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
}

.benefit-check {
    background: var(--rose-primary);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    font-weight: 700;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: var(--spacing-md);
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--rose-lightest);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--rose-primary);
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-method p {
    color: var(--text-medium);
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-link {
    color: var(--rose-darker);
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition-fast);
    word-break: break-all;
}

.contact-link:hover,
.contact-link:focus {
    color: var(--rose-primary);
    text-decoration: none;
}

.contact-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.contact-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    animation: float 6s ease-in-out infinite;
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--rose-darker);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-icon {
    filter: brightness(0) invert(1);
}

.footer-brand {
    font-weight: 500;
}

.i-footer {
    color: var(--rose-lightest);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--rose-lightest);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.footer-text p {
    // ...existing code...
}

.footer-social {
    margin: var(--spacing-md) 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 0.9375rem;
    font-weight: 400;
}

.social-link:hover {
    opacity: 0.8;
    transform: translateX(4px);
}

.social-link svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ===========================
   WhatsApp Floating Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    transition: all var(--transition-normal);
}

.whatsapp-text {
    position: absolute;
    right: 80px;
    background-color: #25D366;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-full);
    background-color: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablet */
@media (max-width: 968px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-image,
    .contact-image {
        order: -1;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .nav-toggle {
        display: flex;
    }

    .gallery-item {
        width: 280px;
        height: 320px;
    }

    .photo-gallery {
        animation-duration: 30s;
    }

    .photo-gallery-wrapper {
        padding: 15px 0;
    }

    .about-image {
        max-width: 370px;
    }

    .image-placeholder {
        height: 530px;
    }

    .nurse-tabs {
        flex-direction: column;
        gap: 1rem;
        padding: 0 var(--spacing-sm);
    }

    .nurse-tab {
        min-width: 100%;
        padding: 1.25rem 1.5rem;
    }

    .tab-name {
        font-size: 1.125rem;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: rgba(254, 253, 251, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--rose-lightest);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 9rem var(--spacing-md) 3rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

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

    .services-category-title {
        font-size: 1.5rem;
    }

    .evidence-content {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .evidence-icon {
        margin: 0 auto;
    }

    .evidence-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

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

    .whatsapp-float {
        width: 65px;
        height: 65px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 34px;
        height: 34px;
    }

    .whatsapp-text {
        display: none;
    }

    .service-modal-panel {
        max-width: 100%;
    }

    .service-modal-content {
        padding: 2rem 1.5rem;
    }

    .service-modal-title {
        font-size: 2rem;
    }

    .service-modal-close {
        top: 1rem;
        right: 1rem;
    }

    .contact {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .contact-content {
        gap: var(--spacing-md);
    }

    .contact-image {
        padding: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .contact-image img {
        max-width: 350px;
    }

    .contact-methods {
        width: 100%;
    }

    .contact-method {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .evidence-content {
        padding: 1.5rem;
    }

    .evidence-title {
        font-size: 1.25rem;
    }

    .evidence-description,
    .evidence-list li {
        font-size: 1rem;
    }

    .services-category-note {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }

    .instagram-feed {
        grid-template-columns: 1fr;
    }

    .service-modal-title {
        font-size: 1.75rem;
    }

    /* Ajuste adicional do blur para telas pequenas */
    .gallery-image-placeholder:has(img[src*="amanda-com-bebe"])::after {
        top: 45%;
        left: 39%;
        width: 25px;
        height: 25px;
        filter: blur(20px);
        backdrop-filter: blur(5px);
    }
}

/* ===========================
   Service Modal Side Panel
   =========================== */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(74, 60, 62, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    background-color: var(--warm-white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.service-modal-overlay.active .service-modal-panel {
    transform: translateX(0);
}

.service-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--rose-lightest);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all var(--transition-normal);
    z-index: 10;
}

.service-modal-close:hover {
    background-color: var(--rose-lighter);
    transform: rotate(90deg);
}

.service-modal-content {
    padding: 3rem 2.5rem;
}

.service-modal-header {
    margin-bottom: 2rem;
}

.service-modal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-modal-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-modal-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-modal-section {
    margin-bottom: 2.5rem;
}

.service-modal-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--rose-dark);
    margin-bottom: 1rem;
}

.service-modal-section p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-modal-list {
    list-style: none;
    padding: 0;
}

.service-modal-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-modal-list li::before {
    content: '🌸';
    position: absolute;
    left: 0;
    top: 0;
}

.service-modal-cta {
    background: linear-gradient(135deg, var(--rose-lighter) 0%, var(--rose-light) 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 2rem;
}

.service-modal-cta h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--rose-darker);
    margin-bottom: 1rem;
}

.service-modal-cta p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-modal-cta .btn {
    background: linear-gradient(135deg, var(--rose-primary) 0%, var(--rose-dark) 100%);
    color: white;
}

/* ===========================
   Accessibility
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--rose-primary);
    outline-offset: 4px;
}

/* ===========================
   Desktop Optimizations (1024px+)
   =========================== */
@media (min-width: 1024px) {
    /* Hero Section - Grid no desktop */
    .hero {
        padding: 8rem var(--spacing-md) 4rem;
        background: linear-gradient(135deg, var(--warm-white) 0%, var(--rose-lightest) 100%);
    }

    .hero::before {
        opacity: 0.3;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-text {
        text-align: left;
        max-width: 600px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-icon-container {
        max-width: 500px;
    }

    .circle-large {
        width: 500px;
        height: 500px;
        opacity: 0.2;
    }

    .circle-medium {
        width: 350px;
        height: 350px;
        opacity: 0.2;
    }

    .hero-icon {
        max-width: 500px;
    }

    .hero-scroll {
        display: flex;
    }

    /* Hero - elementos de conversão desktop: alinhados à esquerda */
    .hero-text {
        text-align: left;
        align-items: flex-start;
    }

    .hero-benefits {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-benefits li {
        justify-content: flex-start;
    }

    .hero-cta-group {
        align-items: flex-start;
    }

    /* Botões - ajuste para desktop */
    .btn {
        width: auto;
        max-width: auto;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Social Proof Bar - Desktop */
    .proof-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
        justify-items: center;
    }

    .proof-stat {
        max-width: 200px;
    }

    /* CTA Section - Desktop */
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .cta-features {
        gap: 1.5rem;
    }

    /* Contact Benefits - Desktop */
    .contact-benefits {
        flex-direction: row;
        justify-content: space-around;
    }

    /* About Section - Grid no desktop */
    .about {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-image {
        max-width: 480px;
    }

    .image-placeholder {
        height: 640px;
    }

    .image-placeholder::before {
        opacity: 0.3;
    }

    .about-text {
        min-height: 600px;
    }

    .about-text .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        text-align: left;
    }

    .nurse-subtitle {
        font-size: 1.25rem;
        text-align: left;
    }

    .about-description {
        font-size: 1.125rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
        margin-top: auto;
    }

    .stat-item {
        height: 150px;
        padding: 1.75rem 1.5rem;
        gap: 0.75rem;
    }

    /* Nurses transition - Desktop only */
    .nurse-dots {
        display: none; /* Esconder dots no desktop */
    }

    .nurse-arrow {
        display: flex; /* Mostrar setas no desktop */
        align-items: center;
        justify-content: center;
    }

    .nurse-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0.25;
        filter: blur(4px) grayscale(0.3);
        transform: scale(0.9) translateX(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        z-index: 1;
        display: block;
    }

    .nurse-content.active {
        position: relative;
        opacity: 1;
        filter: blur(0) grayscale(0);
        transform: scale(1) translateX(0);
        pointer-events: all;
        z-index: 10;
        animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Animação de aparecer do fundo no desktop */
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.85) translateY(20px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateX(0);
        }
    }

    /* Badges - Desktop: centralizar e ajustar */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item {
        max-width: 180px;
        padding: 1.5rem 1rem;
        min-height: 120px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-number-small {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Hero - Desktop: centralizar CTA */
    .hero-text {
        text-align: left;
        max-width: 600px;
    }

    .hero-cta-group {
        align-items: flex-start;
    }

    /* Services Grid - Grid no desktop */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .service-card {
        padding: var(--spacing-lg);
    }

    .service-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto var(--spacing-md);
    }

    .service-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }

    .service-description {
        line-height: 1.7;
    }

    /* Typography - Desktop */
    .section-label {
        font-size: 0.875rem;
        letter-spacing: 2px;
        margin-bottom: var(--spacing-sm);
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: var(--spacing-md);
    }

    .section-description {
        font-size: 1.125rem;
        max-width: 600px;
    }

    /* Services Section - Desktop */
    .services {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .services-category {
        margin-bottom: var(--spacing-xl);
    }

    .services-category-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-md);
    }

    .services-category-note {
        padding: 1rem 2rem;
        margin-bottom: var(--spacing-lg);
        max-width: 700px;
    }

    /* Differentials Section - Desktop */
    .differentials {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .differentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .differential-card {
        padding: var(--spacing-lg);
    }

    .differential-card:hover {
        transform: scale(1.05);
    }

    .differential-icon {
        font-size: 3rem;
        min-height: 140px;
    }

    .differential-card:hover .differential-icon {
        transform: scale(1.1);
    }

    .differential-card:hover .differential-icon img {
        transform: scale(1.1);
    }

    .differential-card h3 {
        margin-bottom: var(--spacing-sm);
    }

    /* FAQ Section - Desktop */
    .faq {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .faq-list {
        max-width: 900px;
        margin: var(--spacing-lg) auto 0;
    }

    .faq-item {
        margin-bottom: var(--spacing-sm);
    }

    .faq-question {
        gap: var(--spacing-md);
        padding: var(--spacing-md) 0;
        font-size: 1.125rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: var(--spacing-md);
    }

    .faq-answer p {
        line-height: 1.8;
    }

    /* Container - Desktop */
    .container {
        padding: 0 var(--spacing-md);
    }

    /* Contact Section - Desktop */
    .contact {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .hero-scroll {
        display: none;
    }
}



























