/* ================================================
   MODERN REDESIGN CSS - DRA. RAFAELA LARANJEIRA
   ================================================ */

/* CSS Variables - Warm Minimalism | Quiet Luxury */
:root {
    /* Brand Colors - "Quiet Luxury Alquimia" */
    --midnight-navy: #3A2415;
    /* Marrom Café Profundo instead of Navy/Black */
    --vanilla-silk: #FDFBF7;
    /* Champagne ultraleve for foregrounds */
    --vanilla-silk-dark: #F8F6F0;
    /* Off-white acinzentado/areia for main backgrounds */
    --toffee-gold: #9F7E54;
    /* Ouro Velho Escovado / Cobre (Sophisticated Gold) */
    --toffee-gold-light: #B4966F;
    /* Versão ligeiramente mais clara do ouro velho */
    --espresso-bronze: #8A6B4E;
    /* Tom intermediário terroso para acentos fortes */

    /* New Colors - Feb 2026 Update */
    --warm-cream-base: #E8C5A0;
    --warm-cream: #FDFBF7;
    /* Versão acessível (15% mais clara para contraste WCAG AA) */
    --reference-beige: #F3EBE1;
    /* Warm beige matching reference photo */
    --header-bronze: #3A2415;

    /* Legacy aliases (for backward compatibility) */
    --primary-gold: var(--toffee-gold);
    --primary-gold-dark: var(--espresso-bronze);
    --primary-gold-light: var(--toffee-gold-light);
    --dark-brown: var(--midnight-navy);
    --light-cream: var(--vanilla-silk);
    --light-cream-dark: var(--vanilla-silk-dark);

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #CCCCCC;
    --gray-600: #4B5563;
    --gray-900: #333333;

    /* Action Colors - WCAG AA Compliant */
    --success-green: #128C7E;
    --success-green-hover: #075E54;

    /* Overlays */
    --overlay-dark: rgba(27, 31, 42, 0.85);
    --overlay-light: rgba(235, 213, 189, 0.95);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-gazpacho: 'Gazpacho Regular', Georgia, 'Times New Roman', serif;
    --font-antonio: 'Antonio Medium', 'Arial Narrow', Helvetica, sans-serif;

    /* CLS Prevention */
    --header-height: 72px;

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

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

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

/* ================================================
   FONT FACES
   ================================================ */

@font-face {
    font-family: 'Gazpacho Regular';
    src: url('../gazpacho-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Antonio Medium';
    src: url('../antonio-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Juana Light';
    src: url('../juana-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ================================================
   ACCESSIBILITY UTILITIES
   ================================================ */

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip-to-main-content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--toffee-gold);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.2s;
    font-weight: bold;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Focus visible styles for keyboard navigation */
button:focus-visible,
a:focus-visible,
.btn-primary-modern:focus-visible,
.btn-secondary-modern:focus-visible,
.btn-agendar-header:focus-visible,
.carousel-btn-modern:focus-visible {
    outline: 3px solid var(--toffee-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(159, 126, 84, 0.3);
}

.social-icon-modern:focus-visible {
    outline: 3px solid var(--toffee-gold);
    outline-offset: 2px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--midnight-navy);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ================================================
   KEYFRAME ANIMATIONS
   ================================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animação de flutuação sutil para formas geométricas decorativas */
@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes gentleGlow {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(82, 46, 21, 0.3),
            0 0 20px rgba(82, 46, 21, 0.2),
            0 0 30px rgba(82, 46, 21, 0.1);
    }

    50% {
        text-shadow:
            0 0 15px rgba(82, 46, 21, 0.4),
            0 0 25px rgba(82, 46, 21, 0.3),
            0 0 40px rgba(82, 46, 21, 0.15);
    }
}

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


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ================================================
   HEADER
   ================================================ */

.header-modern {
    position: sticky;
    top: 0;
    background: var(--header-bronze);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
    box-shadow: var(--shadow-sm);
    min-height: var(--header-height);
    contain: layout style;
}

.nav-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-lg);
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: fadeInDown 0.8s ease-out;
}

.logo-img-modern {
    height: 50px;
    width: auto;
}

.logo-text-modern {
    display: flex;
    flex-direction: column;
}

.logo-name-modern {
    font-family: var(--font-gazpacho);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-subtitle-modern {
    font-family: var(--font-antonio);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.nav-menu-modern {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link-modern {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.nav-link-modern:hover,
.nav-link-modern.active {
    color: var(--vanilla-silk);
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vanilla-silk);
    transition: var(--transition-base);
}

.nav-link-modern:hover::after,
.nav-link-modern.active::after {
    width: 100%;
}

.btn-agendar-header {
    background: var(--espresso-bronze);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-agendar-header:hover {
    background: var(--midnight-navy);
    border-color: var(--vanilla-silk);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger-modern {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero-modern {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #EBD5BD 0%, #F5EBD8 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    contain: layout style;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(159, 96, 54, 0.03) 100%);
    pointer-events: none;
}

.hero-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Esconder elementos mobile no desktop */
.hero-overlay-mobile,
.hero-text-overlay-mobile,
.hero-content-bottom-mobile {
    display: none;
}

.hero-content-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    padding-top: 0 !important;
}

.hero-title-modern {
    font-family: var(--font-heading);
    line-height: 1.1;
}

.hero-subtitle-text {
    font-family: var(--font-gazpacho);
    font-size: 1.5rem;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.hero-name-text {
    font-family: var(--font-gazpacho);
    font-size: 4rem;
    color: var(--dark-brown);
    font-weight: 500;
    display: block;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-specialty {
    font-family: var(--font-antonio);
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.hero-specialty-modern {
    font-family: var(--font-antonio);
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.hero-credentials {
    font-size: 1rem;
    color: var(--gray-600);
}

.hero-quote {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark-brown);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-gold);
    background: rgba(159, 96, 54, 0.08);
    margin: var(--spacing-lg) 0;
}

.hero-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.btn-primary-modern {
    background: var(--success-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.0625rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-base);
}

.btn-primary-modern:hover,
.btn-primary-modern:focus-visible {
    background: var(--success-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-modern {
    background: transparent;
    color: var(--dark-brown);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.0625rem;
    border: 2px solid var(--dark-brown);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-base);
}

.btn-secondary-modern:hover {
    background: var(--dark-brown);
    color: var(--white);
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
    margin-top: var(--spacing-xl);
}

.trust-title {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
}

.trust-badges {
    display: flex;
    gap: var(--spacing-lg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--warm-cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--toffee-gold);
}

.trust-info {
    display: flex;
    flex-direction: column;
}

.trust-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Mobile-only elements (hidden on desktop) */
.hero-overlay-mobile,
.hero-text-overlay-mobile,
.hero-tagline-mobile {
    display: none;
}

/* Hero Image */
.hero-image-modern {
    position: relative;
    animation: scaleIn 1s ease-out 0.4s backwards;
}

.hero-photo-modern {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   SERVICES BENTO GRID
   ================================================ */

.services-bento {
    padding: var(--spacing-2xl) 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Formas geométricas decorativas na seção Cirurgias - Elegantes & Coloridas */
.services-bento::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: clamp(200px, 40vw, 400px);
    height: clamp(200px, 40vw, 400px);
    background: linear-gradient(135deg, rgba(159, 126, 84, 0.18) 0%, rgba(180, 140, 110, 0.12) 40%, rgba(220, 195, 165, 0.2) 100%);
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 80px rgba(159, 126, 84, 0.12), 0 0 120px rgba(180, 140, 110, 0.08);
    animation: floatShape 8s ease-in-out infinite;
}

.services-bento::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: clamp(180px, 35vw, 350px);
    height: clamp(180px, 35vw, 350px);
    background: linear-gradient(45deg, rgba(139, 90, 55, 0.1) 0%, rgba(220, 195, 165, 0.18) 50%, rgba(159, 126, 84, 0.14) 100%);
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 60px rgba(139, 90, 55, 0.08);
    animation: floatShape 10s ease-in-out infinite reverse;
}

/* Forma geométrica adicional - arco decorativo dourado */
.services-bento .container::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 120px;
    height: 240px;
    border: 2px solid transparent;
    border-image: linear-gradient(180deg, rgba(159, 126, 84, 0.35), rgba(180, 140, 110, 0.1)) 1;
    border-radius: 120px 0 0 120px;
    border-right: none;
    pointer-events: none;
    z-index: 0;
    animation: floatShape 12s ease-in-out infinite;
}

.services-bento .container {
    position: relative;
    z-index: 1;
}

.section-header-modern {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-logo-icon {
    width: 48px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
    opacity: 0.6;
    /* Soft sepia filter to match Quiet Luxury gold/copper tones */
    filter: invert(45%) sepia(21%) saturate(996%) hue-rotate(345deg) brightness(97%) contrast(90%);
}

.section-title-modern {
    font-family: 'Juana Light', var(--font-heading);
    font-size: 3.5rem;
    color: var(--dark-brown);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

/* Linha decorativa dourada abaixo dos títulos de seção */
.section-title-modern::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--toffee-gold);
    margin: var(--spacing-sm) auto 0;
}

.section-subtitle-modern {
    font-size: 1.25rem;
    color: var(--midnight-navy);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Vertical Cards Layout */

.services-cards-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
    margin-top: var(--spacing-2xl);
}

.service-card-modern {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(159, 126, 84, 0.1);
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 36, 21, 0.08);
    border-color: rgba(159, 126, 84, 0.3);
}

.service-card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: var(--vanilla-silk-dark);
}

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

.service-card-modern:hover .service-card-image img {
    transform: scale(1.03);
}

.service-card-content {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--midnight-navy);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}

.service-card-link {
    color: var(--toffee-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition-base);
}

.service-card-modern:hover .service-card-link {
    color: var(--espresso-bronze);
    gap: 0.75rem;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.custom-shape-divider-top-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

.custom-shape-divider-top-about svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-top-about .shape-fill {
    fill: var(--reference-beige);
}

.about-modern {
    padding: var(--spacing-3xl) 0;
    background: var(--reference-beige);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Formas geométricas decorativas na seção Sobre - Elegantes & Coloridas */
.about-modern::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: clamp(150px, 30vw, 300px);
    height: clamp(150px, 30vw, 300px);
    background: linear-gradient(135deg, rgba(180, 140, 110, 0.2) 0%, rgba(220, 195, 165, 0.15) 50%, rgba(159, 126, 84, 0.1) 100%);
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 70px rgba(159, 126, 84, 0.1), 0 0 100px rgba(180, 140, 110, 0.06);
    animation: floatShape 9s ease-in-out infinite;
}

.about-modern::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -40px;
    width: clamp(140px, 28vw, 280px);
    height: clamp(140px, 28vw, 280px);
    background: linear-gradient(45deg, rgba(139, 90, 55, 0.12) 0%, rgba(180, 140, 110, 0.18) 50%, rgba(220, 195, 165, 0.15) 100%);
    border-top-left-radius: 200px;
    border-bottom-left-radius: 50px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 50px rgba(139, 90, 55, 0.08);
    animation: floatShape 11s ease-in-out infinite reverse;
}

/* Quadrante decorativo - diamante dourado/cobre */
.about-split-modern::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 8%;
    width: clamp(90px, 18vw, 180px);
    height: clamp(90px, 18vw, 180px);
    background: linear-gradient(225deg, rgba(159, 126, 84, 0.15) 0%, rgba(220, 195, 165, 0.1) 50%, rgba(180, 140, 110, 0.12) 100%);
    border-radius: 0 100px 0 100px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    animation: floatShape 13s ease-in-out infinite;
}

/* Arco decorativo vertical - dourado elegante */
.about-split-modern::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 3%;
    width: 80px;
    height: 160px;
    border: 2px solid rgba(159, 126, 84, 0.25);
    border-radius: 0 80px 80px 0;
    border-left: none;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 20px rgba(159, 126, 84, 0.06);
    animation: floatShape 14s ease-in-out infinite reverse;
}

.about-split-modern {
    position: relative;
    z-index: 1;
}

.about-split-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 2rem;
    /* space for badge */
    z-index: 1;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -1.5rem;
    width: 60%;
    height: 40%;
    background-color: #B2AFA9;
    border-top-left-radius: 90px;
    z-index: -1;
}

.about-main-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(58, 36, 21, 0.08);
}

.about-floating-badge {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--toffee-gold);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.badge-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
}

.badge-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--midnight-navy);
}

.about-split-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.about-title-modern {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--midnight-navy);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.about-lead-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-lead-text {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* 2x2 Grid Features */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.feature-card-modern {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(159, 126, 84, 0.2);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.feature-card-modern:hover {
    box-shadow: 0 4px 15px rgba(159, 126, 84, 0.08);
    border-color: rgba(159, 126, 84, 0.4);
}

.feature-card-title {
    font-family: var(--font-heading);
    color: var(--midnight-navy);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

.feature-card-btn {
    display: inline-block;
    margin-top: auto;
    padding: 6px 16px;
    background: transparent;
    color: var(--toffee-gold);
    border: 1px solid var(--toffee-gold);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-base);
    align-self: flex-start;
}

.feature-card-btn:hover {
    background: var(--toffee-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(159, 126, 84, 0.2);
}

.btn-outline-gold-modern {
    align-self: flex-start;
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--toffee-gold);
    border: 1px solid var(--toffee-gold);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-outline-gold-modern:hover {
    background: var(--toffee-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(159, 126, 84, 0.2);
}

/* Social Media Overlay (Keeping previous social implementation, just integrating to bottom if needed, though removed from split layout in HTML) */
.social-media-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-title-modern {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.social-icons-modern {
    display: flex;
    gap: var(--spacing-md);
}

.social-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--midnight-navy);
}

.social-icon-modern:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
    border-color: var(--toffee-gold);
    color: var(--toffee-gold);
}

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

.social-icon-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icon-modern.whatsapp-icon {
    background: var(--success-green);
    border-color: var(--success-green);
    color: #FFFFFF;
}

.social-icon-modern.whatsapp-icon:hover {
    background: var(--success-green-hover);
    border-color: var(--success-green-hover);
}

.social-icon-modern.whatsapp-icon svg {
    width: 26px;
    height: 26px;
}

/* Hero Social Links - Bottom of Hero */
.hero-social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(58, 36, 21, 0.1);
}

.hero-social-links .social-icon-modern {
    width: 44px;
    height: 44px;
    background: var(--vanilla-silk);
    border: 1px solid var(--gray-200);
}

.hero-social-links .social-icon-modern:hover {
    background: var(--toffee-gold);
    border-color: var(--toffee-gold);
    color: var(--white);
}

.hero-social-links .social-icon-modern svg {
    width: 20px;
    height: 20px;
}

/* Mobile hero social links */
.hero-content-bottom-mobile .hero-social-links {
    justify-content: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-content-bottom-mobile .hero-social-links .social-icon-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
}

.hero-content-bottom-mobile .hero-social-links .social-icon-modern:hover {
    background: var(--toffee-gold);
    border-color: var(--toffee-gold);
}

/* ================================================
   INSTAGRAM FEED SECTION
   ================================================ */

.instagram-feed-modern {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.instagram-feed-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Grid 3x2 de posts */
.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.instagram-post-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1;
    display: block;
}

.instagram-post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
}

.instagram-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(159, 126, 84, 0.6) 0%, rgba(58, 36, 21, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post-overlay svg {
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.instagram-post-item:hover img {
    transform: scale(1.08);
}

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

.instagram-post-item:hover .instagram-post-overlay svg {
    transform: scale(1);
}

/* Info lateral */
.instagram-info {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.instagram-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--midnight-navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.instagram-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 400px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--toffee-gold);
    border-radius: var(--radius-full);
    color: var(--toffee-gold);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-base);
    width: fit-content;
    margin-top: var(--spacing-sm);
}

.btn-instagram:hover {
    background: var(--toffee-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 126, 84, 0.3);
}

.btn-instagram svg {
    transition: transform 0.3s ease;
}

.btn-instagram:hover svg {
    transform: scale(1.1);
}

/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials-modern {
    padding: var(--spacing-3xl) 0;
    background: var(--reference-beige);
    position: relative;
    overflow: hidden;
}

/* Formas geométricas na seção Depoimentos - Elegantes & Coloridas */
.testimonials-modern::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: clamp(150px, 35vw, 350px);
    height: clamp(150px, 35vw, 350px);
    background: linear-gradient(135deg, rgba(159, 126, 84, 0.16) 0%, rgba(220, 195, 165, 0.12) 40%, rgba(180, 140, 110, 0.08) 100%);
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 100px rgba(159, 126, 84, 0.06);
    animation: floatShape 10s ease-in-out infinite;
}

.testimonials-modern::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: linear-gradient(315deg, rgba(139, 90, 55, 0.12) 0%, rgba(180, 140, 110, 0.15) 40%, rgba(220, 195, 165, 0.08) 100%);
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 60px rgba(139, 90, 55, 0.06);
    animation: floatShape 12s ease-in-out infinite reverse;
}

/* Elipse decorativa central - contorno dourado elegante */
.testimonials-carousel-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 120%;
    border: 1.5px solid rgba(159, 126, 84, 0.12);
    border-radius: 200px;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 40px rgba(159, 126, 84, 0.04);
}

/* Arco lateral - cobre rosé com brilho suave */
.testimonials-carousel-modern::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 200px;
    border: 2px solid rgba(180, 140, 110, 0.2);
    border-radius: 100px 0 0 100px;
    border-right: none;
    pointer-events: none;
    z-index: 0;
    box-shadow: -10px 0 30px rgba(180, 140, 110, 0.05);
    animation: floatShape 15s ease-in-out infinite;
}

/* Container precisa estar acima das formas */
.testimonials-modern .container {
    position: relative;
    z-index: 1;
}

.rating-summary-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(159, 96, 54, 0.1);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    margin-top: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.rating-summary-modern[aria-label] {
    cursor: default;
}

.rating-value-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow:
        0 0 12px rgba(82, 46, 21, 0.35),
        0 0 24px rgba(82, 46, 21, 0.25),
        0 0 36px rgba(82, 46, 21, 0.12);
    animation: gentleGlow 3s ease-in-out infinite;
}

.rating-stars-modern {
    color: var(--toffee-gold);
    font-size: 1.125rem;
}

.rating-count-modern {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Testimonials Carousel */
.testimonials-carousel-modern {
    position: relative;
    margin: var(--spacing-3xl) 0;
    overflow: visible;
    padding: 0 40px;
}

.carousel-btn-modern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--warm-cream);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.carousel-btn-modern:hover {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.prev-btn-modern {
    left: 10px;
}

.next-btn-modern {
    right: 10px;
}

.testimonials-track-modern {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.5s ease;
}

.testimonial-card-modern {
    min-width: 400px;
    background: var(--warm-cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.testimonial-header-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial-info-modern {
    flex-grow: 1;
}

.testimonial-name-modern {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--midnight-navy);
}

.testimonial-date-modern {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonial-stars-modern {
    color: var(--toffee-gold);
    margin-bottom: var(--spacing-md);
}

.testimonial-text-modern {
    font-size: 1rem;
    color: var(--midnight-navy);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.01em;
}

.testimonial-source-modern {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-logo-letter {
    font-family: Arial, sans-serif;
    font-weight: 800;
}

.testimonials-links-modern {
    text-align: center;
}

.testimonials-links-modern a {
    color: var(--primary-gold);
    font-weight: 600;
}

.testimonials-links-modern a:hover {
    text-decoration: underline;
}

/* ================================================
   BLOG SECTION
   ================================================ */

.blog-modern {
    padding: var(--spacing-3xl) 0;
    background: var(--vanilla-silk-dark);
    position: relative;
    overflow: hidden;
}

.blog-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(159, 126, 84, 0.12) 0%, rgba(220, 195, 165, 0.06) 40%, transparent 70%);
    pointer-events: none;
    transform: translateY(-50%);
    animation: floatShape 11s ease-in-out infinite;
}

.blog-modern::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: clamp(120px, 22vw, 220px);
    height: clamp(120px, 22vw, 220px);
    background: linear-gradient(135deg, rgba(180, 140, 110, 0.1) 0%, rgba(159, 126, 84, 0.14) 50%, rgba(220, 195, 165, 0.08) 100%);
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    animation: floatShape 13s ease-in-out infinite reverse;
}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.blog-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--vanilla-silk);
}

.blog-image-modern {
    position: relative;
    overflow: hidden;
}

.blog-image-modern img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-badge-modern {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content-modern {
    padding: var(--spacing-lg);
    background: var(--blog-content-bg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.blog-excerpt-modern {
    font-size: 0.95rem;
    color: var(--midnight-navy);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.blog-link-modern {
    color: var(--espresso-bronze);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.blog-link-modern:hover {
    color: var(--midnight-navy);
}

/* ================================================
   CTA SECTION - FULL WIDTH COM IMAGEM
   ================================================ */

.cta-modern {
    padding: 0;
    background: var(--vanilla-silk-dark);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Imagem de fundo full-width */
.cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../images/dra-rafaela-cta.webp');
    background-size: cover;
    background-position: center -15%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    transition: transform 0.3s ease-out;
}

/* Overlay escuro semi-transparente */
.cta-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(58, 36, 21, 0.85) 0%, rgba(58, 36, 21, 0.65) 50%, rgba(58, 36, 21, 0.4) 100%);
    z-index: 1;
}

/* Animação Ken Burns para Mobile */
@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.05) translate(-0.5%, -0.5%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.cta-content-modern {
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: var(--spacing-3xl) var(--spacing-xl);
}

.cta-title-modern {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-subtitle-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    line-height: 1.6;
}

/* Linha decorativa no CTA */
.cta-content-modern .cta-subtitle-modern::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--toffee-gold);
    margin-bottom: var(--spacing-md);
}

.btn-cta-whatsapp-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--success-green);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition-base);
    margin-bottom: 0;
}

.btn-cta-whatsapp-modern:hover,
.btn-cta-whatsapp-modern:focus-visible {
    background: var(--success-green-hover);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Contact Info Box */
.contact-info-box-modern {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    background: var(--warm-cream);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    margin-top: var(--spacing-xl);
}

.contact-info-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #440407;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Container para múltiplos endereços */
.contact-locations-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

/* Card individual de endereço */
.contact-location-card {
    background: rgba(255, 255, 255, 0.5);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-location-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--espresso-bronze);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--espresso-bronze);
}

.contact-info-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.contact-info-item-modern {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    text-align: left;
}

.contact-info-item-modern i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.25rem;
}

.contact-label-modern {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
}

.contact-value-modern {
    font-size: 0.95rem;
    color: var(--midnight-navy);
}

.contact-map-modern {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: auto;
    min-height: 280px;
    aspect-ratio: 16 / 10;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-map-modern iframe {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    border: 0;
}

/* ================================================
   FOOTER
   ================================================ */

.footer-modern {
    background: var(--dark-brown);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-title-modern {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-gold);
}

.footer-links-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-links-modern a:hover {
    color: var(--primary-gold);
    padding-left: 0.5rem;
}

.footer-bottom-modern {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-modern p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-rating-modern {
    font-weight: 700;
    color: var(--primary-gold);
    margin: var(--spacing-sm) 0;
}

.footer-copyright-modern {
    font-size: 0.75rem;
    margin-top: var(--spacing-md);
}

/* ================================================
   FLOATING WHATSAPP BUTTON
   ================================================ */

.whatsapp-float-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease-out;
    animation: pulse-float 2s infinite;
}

.whatsapp-float-modern:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-modern i {
    font-size: 2.25rem;
    color: #FFFFFF;
    transition: transform 0.3s ease-out;
}

.whatsapp-float-modern:hover i {
    transform: scale(1.05);
}

.whatsapp-tooltip-modern {
    position: absolute;
    right: 85px;
    background: var(--dark-brown);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.whatsapp-float-modern:hover .whatsapp-tooltip-modern {
    opacity: 1;
}

@keyframes pulse-float {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1200px) {
    .bento-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

    .bento-large-modern {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-wide-modern {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-tall-modern {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .testimonial-card-modern {
        min-width: 350px;
    }
}

@media (max-width: 992px) {

    /* Instagram Feed */
    .instagram-feed-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .instagram-info {
        text-align: center;
        align-items: center;
        order: -1;
    }

    .instagram-description {
        max-width: 100%;
    }

    .instagram-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Header */
    .nav-menu-modern {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--header-bronze);
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: var(--spacing-md);
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu-modern.active {
        left: 0;
    }

    .btn-agendar-header {
        display: none;
    }

    .hamburger-modern {
        display: block;
    }

    /* Hero - Mobile First Design: Vertical Stack (Foto Topo, Texto Abaixo) */
    .hero-modern {
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: #000000;
    }

    .hero-grid-modern {
        display: contents;
    }

    /* Foto em tela cheia no mobile */
    .hero-image-modern {
        position: relative;
        width: 100%;
        min-height: 100vh;
        z-index: 1;
    }

    .hero-photo-modern {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    /* Overlay escuro apenas na metade inferior para não ofuscar o rosto */
    .hero-overlay-mobile {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.85) 100%);
        z-index: 2;
        pointer-events: none;
    }

    /* Conteudo Unificado na Base (Mobile) */
    .hero-content-bottom-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        z-index: 3;
        padding: 0 var(--spacing-lg);
        text-align: center;
        width: 100%;
    }

    .logo-modern-mobile {
        margin-bottom: var(--spacing-sm);
    }

    .logo-img-overlay {
        width: 70px;
        height: auto;
        filter: brightness(0) invert(1);
    }

    .hero-name-overlay {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-subtitle-overlay {
        font-family: var(--font-gazpacho);
        font-size: 2.1rem;
        font-weight: 500;
        color: var(--toffee-gold-light);
        letter-spacing: 0px;
    }

    .hero-specialty-overlay {
        font-family: var(--font-antonio);
        font-size: 0.95rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.5px;
    }

    /* Frase motivacional e Botao */
    .hero-tagline-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        margin-top: var(--spacing-sm);
        padding-top: var(--spacing-md);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
    }

    .hero-tagline-mobile p {
        font-family: var(--font-heading);
        font-size: 1.125rem;
        font-style: italic;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        letter-spacing: 0.02em;
    }

    .btn-mobile-elegant {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 12px 28px;
        margin-top: 1rem;
        font-family: var(--font-primary);
        font-size: 1rem;
        font-weight: 500;
        color: #FFFFFF;
        background-color: transparent;
        border: 1px solid var(--toffee-gold);
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-mobile-elegant:hover,
    .btn-mobile-elegant:active {
        background-color: var(--toffee-gold);
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(184, 150, 93, 0.3);
    }

    /* Conteúdo texto (escondido no mobile) */
    .hero-content-modern {
        display: none;
    }



    .hero-name-text {
        font-size: 2.5rem;
    }

    .trust-badges {
        justify-content: center;
        margin-top: var(--spacing-md);
    }

    /* Services Cards Grid */
    .services-cards-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about-split-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

    /* Blog */
    .blog-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Info */
    .contact-info-grid-modern {
        grid-template-columns: 1fr;
    }

    /* Endereços em coluna no mobile */
    .contact-locations-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Typography */
    .section-title-modern {
        font-size: 2.5rem;
    }

    .cta-title-modern {
        font-size: 2rem;
    }

    .hero-name-text {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .service-card-title {
        font-size: 1.25rem;
    }

    .contact-info-box-modern {
        padding: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .contact-location-card {
        padding: var(--spacing-md);
        box-sizing: border-box;
    }

    .contact-map-modern iframe {
        min-height: 200px;
    }

    .contact-info-item-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-item-modern i {
        margin-bottom: 0.5rem;
    }


    .hero-content-modern {
        display: none;
    }

    /* Adjust SVG Background Divider scale for mobile */
    .custom-shape-divider-top-about svg {
        height: 30px;
    }

    /* ============================================
       FORMAS GEOMÉTRICAS - MOBILE (Pequenas e sutis)
       ============================================ */

    /* Seção Cirurgias - Mobile */
    .services-bento::before {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -40px;
        opacity: 0.5;
        border-radius: 50%;
        /* Mantendo forma circular caso fluid width/height distorça */
    }

    .services-bento::after {
        width: 130px;
        height: 130px;
        bottom: -50px;
        left: -40px;
        opacity: 0.4;
        border-radius: 50%;
    }

    .services-bento .container::before {
        display: none;
        /* Remove arco em mobile */
    }

    /* Seção Sobre - Mobile */
    .about-modern::before {
        width: 120px;
        height: 120px;
        top: -30px;
        left: -30px;
        opacity: 0.55;
    }

    .about-modern::after {
        width: 100px;
        height: 100px;
        bottom: -40px;
        right: -20px;
        opacity: 0.45;
    }

    .about-split-modern::before {
        display: none;
        /* Esconde em mobile */
    }

    .about-split-modern::after {
        display: none;
        /* Esconde em mobile */
    }

    /* Seção Depoimentos - Mobile */
    .testimonials-modern::before {
        width: 140px;
        height: 140px;
        top: -40px;
        left: -40px;
        opacity: 0.5;
    }

    .testimonials-modern::after {
        width: 120px;
        height: 120px;
        bottom: -40px;
        right: -40px;
        opacity: 0.4;
    }

    .testimonials-carousel-modern::before {
        width: 95%;
        height: 105%;
        border-radius: 60px;
        border-width: 1px;
        opacity: 0.6;
    }

    .testimonials-carousel-modern::after {
        display: none;
        /* Remove arco lateral em mobile */
    }

    .hero-image-modern {
        opacity: 1;
    }

    .hero-cta-buttons {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        justify-content: center;
    }

    /* Bento Grid */
    .bento-grid-modern {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large-modern,
    .bento-wide-modern,
    .bento-tall-modern {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Resultados volta a vertical no mobile */
    .bento-stats {
        flex-direction: column;
        padding: var(--spacing-lg);
    }

    .bento-stats .bento-title-modern {
        position: static;
        margin-bottom: var(--spacing-md);
    }

    .stat-item-modern {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: var(--spacing-md) 0;
        text-align: center;
    }

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

    /* Testimonials */
    .testimonial-card-modern {
        min-width: 300px;
    }

    .carousel-btn-modern {
        width: 40px;
        height: 40px;
    }

    .prev-btn-modern {
        left: 5px;
    }

    .next-btn-modern {
        right: 5px;
    }

    /* Blog */
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }

    /* CTA Section Mobile - Imagem fixa com texto deslizando */
    .cta-modern {
        min-height: 100vh;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .cta-modern::before {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-attachment: scroll;
        background-position: center 15%;
        background-size: cover;
        animation: kenBurns 25s ease-in-out infinite;
        will-change: transform;
    }

    .cta-modern::after {
        background: linear-gradient(180deg,
                rgba(58, 36, 21, 0.15) 0%,
                rgba(58, 36, 21, 0.35) 35%,
                rgba(58, 36, 21, 0.75) 70%,
                rgba(58, 36, 21, 0.92) 100%);
    }

    .cta-content-modern {
        text-align: center;
        padding: var(--spacing-2xl) var(--spacing-md);
        margin-top: auto;
        padding-bottom: var(--spacing-3xl);
    }

    .cta-title-modern {
        font-size: 2rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .cta-subtitle-modern {
        font-size: 1.1rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .cta-content-modern .cta-subtitle-modern::before {
        margin: 0 auto var(--spacing-md);
    }

    /* Footer */
    .footer-grid-modern {
        grid-template-columns: 1fr;
    }

    /* WhatsApp Float */
    .whatsapp-float-modern {
        width: 60px;
        height: 60px;
        bottom: 24px;
        right: 24px;
        z-index: 9999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-float-modern:hover {
        transform: scale(1.08) translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 12px 35px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-float-modern i {
        font-size: 1.75rem;
    }

    .whatsapp-tooltip-modern {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .section-title-modern {
        font-size: 1.75rem;
    }

    .hero-name-text {
        font-size: 1.75rem;
    }

    .logo-name-modern {
        font-size: 0.875rem;
    }

    .logo-subtitle-modern {
        font-size: 0.625rem;
    }

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

    .hero-specialty-overlay {
        font-size: 0.75rem;
    }

    /* ============================================
       FORMAS GEOMÉTRICAS - MOBILE PEQUENO (Mínimas)
       ============================================ */

    /* Seção Cirurgias - Mobile pequeno */
    .services-bento::before {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
        opacity: 0.35;
    }

    .services-bento::after {
        width: 90px;
        height: 90px;
        bottom: -35px;
        left: -30px;
        opacity: 0.3;
    }

    /* Seção Sobre - Mobile pequeno */
    .about-modern::before {
        width: 80px;
        height: 80px;
        top: -20px;
        left: -20px;
        opacity: 0.4;
    }

    .about-modern::after {
        width: 70px;
        height: 70px;
        bottom: -25px;
        right: -15px;
        opacity: 0.35;
    }

    /* Seção Depoimentos - Mobile pequeno */
    .testimonials-modern::before {
        width: 100px;
        height: 100px;
        top: -30px;
        left: -30px;
        opacity: 0.35;
    }

    .testimonials-modern::after {
        width: 90px;
        height: 90px;
        bottom: -30px;
        right: -30px;
        opacity: 0.3;
    }

    .testimonials-carousel-modern::before {
        border-radius: 40px;
        opacity: 0.4;
    }
}

/* ================================================
   TABLET LAYOUT (769px - 1024px)
   ================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

    .hero-modern {
        min-height: 90vh;
    }

    .hero-text-overlay-mobile {
        top: 100px;
    }

    .hero-subtitle-overlay {
        font-size: 1.5rem;
    }

    .hero-specialty-overlay {
        font-size: 1rem;
    }

    .logo-img-overlay {
        width: 100px;
    }

    /* ============================================
       FORMAS GEOMÉTRICAS - TABLET (Médias e equilibradas)
       ============================================ */

    /* Seção Cirurgias - Tablet */
    .services-bento::before {
        width: 280px;
        height: 280px;
        top: -60px;
        right: -60px;
        opacity: 0.75;
    }

    .services-bento::after {
        width: 240px;
        height: 240px;
        bottom: -100px;
        left: -60px;
        opacity: 0.65;
    }

    .services-bento .container::before {
        width: 100px;
        height: 200px;
        left: 3%;
        border-width: 2px;
        opacity: 0.25;
    }

    /* Seção Sobre - Tablet */
    .about-modern::before {
        width: 220px;
        height: 220px;
        top: -50px;
        left: -50px;
        opacity: 0.7;
    }

    .about-modern::after {
        width: 200px;
        height: 200px;
        bottom: -80px;
        right: -40px;
        opacity: 0.6;
    }

    .about-split-modern::before {
        width: 140px;
        height: 140px;
        top: 20%;
        right: 5%;
        opacity: 0.55;
        display: block;
    }

    .about-split-modern::after {
        display: none;
        /* Esconde em tablet para não poluir */
    }

    /* Seção Depoimentos - Tablet */
    .testimonials-modern::before {
        width: 250px;
        height: 250px;
        top: -80px;
        left: -80px;
        opacity: 0.7;
    }

    .testimonials-modern::after {
        width: 220px;
        height: 220px;
        bottom: -70px;
        right: -70px;
        opacity: 0.6;
    }

    .testimonials-carousel-modern::before {
        width: 90%;
        height: 115%;
        border-width: 2px;
        opacity: 0.8;
    }

    .testimonials-carousel-modern::after {
        width: 80px;
        height: 160px;
        border-width: 2px;
        opacity: 0.2;
    }
}

/* ================================================
   DESKTOP LAYOUT (Large screens > 1024px)
   ================================================ */
@media (min-width: 1025px) {

    /* Restaurar layout desktop do hero */
    .hero-modern {
        padding: var(--spacing-3xl) 0;
        background: linear-gradient(135deg, #EBD5BD 0%, #F5EBD8 50%, #FFFFFF 100%);
        min-height: auto;
    }

    .hero-modern::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(159, 96, 54, 0.03) 100%);
        pointer-events: none;
    }

    .hero-grid-modern {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* ============================================
       FORMAS GEOMÉTRICAS - DESKTOP (Grandes e elaboradas)
       ============================================ */

    /* Seção Cirurgias - Desktop */
    .services-bento::before {
        width: 450px;
        height: 450px;
        top: -100px;
        right: -100px;
        opacity: 0.9;
    }

    .services-bento::after {
        width: 380px;
        height: 380px;
        bottom: -150px;
        left: -100px;
        opacity: 0.8;
    }

    .services-bento .container::before {
        width: 140px;
        height: 280px;
        left: 5%;
        border-width: 3px;
        opacity: 0.35;
    }

    /* Seção Sobre - Desktop */
    .about-modern::before {
        width: 350px;
        height: 350px;
        top: -80px;
        left: -80px;
        opacity: 0.9;
    }

    .about-modern::after {
        width: 300px;
        height: 300px;
        bottom: -100px;
        right: -50px;
        opacity: 0.8;
    }

    .about-split-modern::before {
        width: 200px;
        height: 200px;
        top: 25%;
        right: 8%;
        opacity: 0.75;
        display: block;
    }

    .about-split-modern::after {
        width: 100px;
        height: 200px;
        bottom: 15%;
        left: 3%;
        border-width: 3px;
        opacity: 0.35;
    }

    /* Seção Depoimentos - Desktop */
    .testimonials-modern::before {
        width: 400px;
        height: 400px;
        top: -120px;
        left: -120px;
        opacity: 0.85;
    }

    .testimonials-modern::after {
        width: 350px;
        height: 350px;
        bottom: -100px;
        right: -100px;
        opacity: 0.75;
    }

    .testimonials-carousel-modern::before {
        width: 85%;
        height: 130%;
        border-width: 2px;
        opacity: 1;
    }

    .testimonials-carousel-modern::after {
        width: 120px;
        height: 240px;
        top: 10%;
        right: 5%;
        border-width: 3px;
        opacity: 0.25;
    }

    /* Esconder elementos mobile no desktop */
    .hero-overlay-mobile,
    .hero-text-overlay-mobile {
        display: none !important;
    }

    /* Mostrar conteúdo texto no desktop */
    .hero-content-modern {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        order: 2;
    }

    /* Imagem no lado esquerdo */
    .hero-image-modern {
        position: relative;
        min-height: auto;
        order: 1;
    }

    .hero-photo-modern {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .hero-cta-buttons {
        flex-direction: row;
        width: auto;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        width: auto;
    }

    /* WhatsApp button com tooltip no desktop */
    .whatsapp-float-modern {
        width: 70px;
        height: 70px;
        bottom: 30px;
        right: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-float-modern:hover {
        transform: scale(1.08) translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 12px 35px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-float-modern i {
        font-size: 2.25rem;
    }

    .whatsapp-tooltip-modern {
        display: block;
    }
}

/* Focus Visible Styles for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 4px;
}

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

/* Reduce Motion for Accessibility */
@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;
    }
}