/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Official Brand Palette */
    --primary-color: #f3f2eb; /* Main cream/beige color */
    /* --secondary-color: #d3ad88; Main brand color - medium brown */
    --secondary-color: #8b7355; /* Main brand color - medium brown */
    --accent-color: #d7bda6; /* Light brown accent */
    --dark-brown: #724b37; /* Dark brown for contrast */
    --pure-white: #fffeff; /* Almost pure white */
    --text-dark: #724b37; /* Dark brown for text */
    --text-light: #6d5444; /* Darker tone for sufficient contrast (WCAG AA compliant) */
    --background-light: #f3f2eb; /* Light cream background */
    --background-white: #fffeff; /* Pure white background */
    --shadow-light: rgba(114, 75, 55, 0.1);
    --shadow-medium: rgba(114, 75, 55, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-title: linear-gradient(135deg, var(--dark-brown) 0%, var(--secondary-color) 100%);
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 60px 0;
    --element-spacing: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Prevent horizontal overflow */
img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    gap: 8px;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    transition: all var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.navbar {
    padding: 0.5rem 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    overflow: visible;
}

.nav-brand {
    flex-shrink: 0;
    max-width: 300px;
    z-index: 1;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button in Navigation */
.nav-cta {
    margin-left: 1rem;
}

.btn-cta {
    background: var(--dark-brown);
    color: var(--pure-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-medium);
    box-shadow: 0 2px 8px rgba(114, 75, 55, 0.15);
}

.btn-cta:hover {
    background: #5a3a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 75, 55, 0.25);
    color: var(--pure-white);
}

.btn-cta::after {
    display: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 10002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all var(--transition-medium);
    pointer-events: none;
    display: block;
}

.hamburger.active span {
    background: var(--dark-brown);
}

/* Hero Section */
section {
    overflow-x: hidden;
    width: 100%;
}

.hero {
    padding: 140px 0 60px 0;
    background: var(--background-light);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 0.5rem;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--text-dark); /* Fallback */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: var(--font-weight-regular);
}

/* About Section */
.about {
    background: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.credentials {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
}

.credentials h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.credentials strong {
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Treatments Section */
.treatments {
    background: var(--background-light);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prenatal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.prenatal-grid .section-header {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.prenatal-grid .section-header h2 {
    font-size: 2rem;
}


.treatment-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.treatment-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-medium);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.treatment-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
}

.treatment-icon img {
    width: 80px;
    height: 80px;
    color: var(--text-dark);
}


.treatment-card:hover .treatment-icon {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.treatment-card:hover .treatment-icon svg {
    color: var(--background-white);
}

.treatment-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.treatment-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Instagram Section */
.instagram {
    background: var(--background-white);
}

.instagram-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.instagram-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.instagram-post {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--background-light);
    transition: all var(--transition-medium);
    box-shadow: 0 4px 15px var(--shadow-light);
    cursor: pointer;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.instagram-icon {
    transform: scale(0.8);
    transition: transform var(--transition-medium);
}

/* Hover Effects */
.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-post:hover .instagram-overlay {
    opacity: 0.9;
}

.instagram-post:hover .instagram-icon {
    transform: scale(1);
}

/* Focus State for Accessibility */
.instagram-post:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Pulse Animation for Instagram Button */
.btn-instagram {
    animation: pulse-instagram 2s ease-in-out infinite;
}

@keyframes pulse-instagram {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(188, 24, 136, 0.5);
    }
}

.btn-instagram:hover {
    animation: none;
}

/* Contact Section */
.contact {
    background: var(--background-light);
    padding-bottom: 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-map {
    height: 415px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
    transition: filter var(--transition-medium);
}

.contact-map:hover iframe {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--background-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--background-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 3px;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.footer ul li a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 3px;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: var(--background-white);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1100;
    transition: all var(--transition-medium);
    animation: pulse 2s infinite;
    margin: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .about-content,
    .instagram-content,
    .contact-content {
        gap: 3rem;
    }
}

/* Desktop Menu - Force visibility above 768px */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        height: auto !important;
        width: auto !important;
        background: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        gap: 2rem !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .nav-menu.active {
        transform: none !important;
    }
    
    .nav-menu li {
        width: auto !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-brand {
        max-width: 300px;
    }
}

/* Tablet - Reduce menu spacing */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1rem !important;
        font-size: 0.9rem;
    }
    
    .nav-cta {
        margin-left: 0.5rem;
    }
    
    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .prenatal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .prenatal-grid .section-header {
        grid-column: span 2;
        grid-row: auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Header */
    .navbar .container {
        gap: 1rem;
        max-width: 100%;
    }
    
    .nav-brand {
        max-width: 250px;
        z-index: 1001;
        position: relative;
    }
    
    /* .nav-brand .logo {
        height: 45px;
    } */
    
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 100vw;
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 90px 1.5rem 2rem;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        text-align: left;
        border-radius: 8px;
        transition: background var(--transition-fast);
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(211, 173, 136, 0.1);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    /* CTA Button in Mobile Menu */
    .nav-cta {
        margin-left: 0;
        margin-top: auto;
        padding-top: 1rem;
    }
    
    .nav-cta .btn-cta {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        display: block;
        border: 2px solid var(--secondary-color);
    }
    
    .nav-cta .btn-cta:hover {
        background: var(--dark-brown);
        border-color: var(--dark-brown);
    }
    
    .hamburger {
        display: flex !important;
        z-index: 10002;
        position: fixed;
        right: 1rem;
        top: 13px;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        padding: 0.75rem;
        min-width: 44px;
        min-height: 44px;
        pointer-events: auto;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        touch-action: manipulation;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .hamburger.active {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .hamburger span {
        background: var(--dark-brown);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }
    
    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .prenatal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .prenatal-grid .section-header {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 15px;
        left: auto;
        z-index: 1100;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .navbar .container {
        gap: 0.5rem;
    }
    
    .nav-brand {
        max-width: 250px;
    }
    
    /* .nav-brand .logo {
        height: 40px;
        max-width: 300px;
    } */
    
    .hamburger {
        flex-shrink: 0;
        z-index: 10002;
        margin-left: auto;
        position: fixed;
        right: 15px;
        top: 12px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .treatment-card {
        padding: 1.5rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 10px;
        left: auto;
        z-index: 1100;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    /* FAQ Mobile */
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 1rem 1rem;
    }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: var(--background-white);
    padding: var(--section-padding);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(211, 173, 136, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-medium);
    color: var(--secondary-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) ease, padding var(--transition-medium) ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-float {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .hero-buttons,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        padding: 20px 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
    }
    
    .btn-outline {
        border-width: 3px;
    }
}