/* ==========================================
   DONUTOPIA - Design System
   Estilo Vintage Moderno
   ========================================== */

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

/* ==========================================
   CSS Variables - Paleta Vintage
   ========================================== */
:root {
    /* Cores Principais */
    --cream: #FDF6E9;
    --cream-dark: #F5E6D3;
    --cream-light: #FFFAF3;
    --brown: #5D4037;
    --brown-dark: #3E2723;
    --brown-light: #8D6E63;

    /* Acentos Rosa Pastel */
    --pink-pastel: #F4B8C5;
    --pink-dark: #E8A0B0;
    --pink-light: #FDE4E9;
    --pink-soft: #FAD4DC;

    /* Extras */
    --caramel: #D4A574;
    --caramel-light: #E8C9A8;
    --chocolate: #4A332C;
    --white: #FFFFFF;
    --shadow: rgba(93, 64, 55, 0.1);
    --shadow-strong: rgba(93, 64, 55, 0.2);

    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Dancing Script', cursive;

    /* Tamanhos */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Espaçamentos */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transições */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Sombras */
    --shadow-sm: 0 2px 4px var(--shadow);
    --shadow-md: 0 4px 12px var(--shadow);
    --shadow-lg: 0 8px 24px var(--shadow);
    --shadow-xl: 0 12px 40px var(--shadow-strong);
}

/* ==========================================
   Base Styles
   ========================================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--brown);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--brown-dark);
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   Utilities
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.highlight {
    color: var(--pink-dark);
    font-style: italic;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-pastel), var(--pink-dark));
    color: var(--brown-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-pastel));
}

.btn-secondary {
    background: var(--cream-dark);
    color: var(--brown);
    border: 2px solid var(--caramel);
}

.btn-secondary:hover {
    background: var(--caramel-light);
    border-color: var(--caramel);
}

.btn-outline {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--brown-light);
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--cream);
}

.btn-white {
    background: var(--white);
    color: var(--brown-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--brown-dark);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-large .icon {
    width: 24px;
    height: 24px;
}

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

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: var(--radius-full);
}

.nav-list {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 500;
    color: var(--brown);
    position: relative;
    padding: var(--space-2) 0;
}

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

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

.nav-link:hover {
    color: var(--brown-dark);
}

.btn-header {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    transition: all var(--transition-fast);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--pink-light) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--pink-soft);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--caramel-light);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--pink-pastel);
    top: 50%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: var(--pink-light);
    color: var(--brown-dark);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--brown-light);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-note {
    font-size: var(--text-sm);
    color: var(--brown-light);
    background: var(--cream-dark);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--pink-pastel);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

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

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

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    font-size: var(--text-sm);
    animation: bounce 3s ease-in-out infinite;
}

.floating-badge span:first-child {
    font-size: var(--text-xl);
}

.badge-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes bounce {

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

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

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--brown-light);
    font-size: var(--text-sm);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(10px);
    }
}

/* ==========================================
   Sections Base
   ========================================== */
.section {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    color: var(--pink-dark);
    margin-bottom: var(--space-2);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.section-description {
    color: var(--brown-light);
    font-size: var(--text-lg);
}

/* ==========================================
   About Section
   ========================================== */
.section-about {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    margin: 0 auto;
}

.about-text {
    max-width: 600px;
}

.about-lead {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--brown-dark);
}

.about-text p {
    margin-bottom: var(--space-6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.feature-card {
    background: var(--cream-dark);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.feature-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.feature-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--brown-light);
    margin-bottom: 0;
}

/* ==========================================
   Products Section
   ========================================== */
.section-products {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--pink-pastel);
    color: var(--brown-dark);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    z-index: 1;
}

.badge-soon {
    background: var(--caramel);
    color: var(--white);
}

.product-image {
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.product-info {
    padding: var(--space-6);
}

.product-info h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.product-info p {
    color: var(--brown-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.product-tags {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.tag {
    background: var(--cream-dark);
    color: var(--brown);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
}

.product-price {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--pink-dark);
}

.product-coming-soon {
    opacity: 0.9;
}

.product-coming-soon .product-image {
    filter: grayscale(30%);
}

.products-cta {
    text-align: center;
    margin-top: var(--space-12);
}

.products-cta p {
    margin-bottom: var(--space-4);
    color: var(--brown-light);
}

/* ==========================================
   How To Section
   ========================================== */
.section-how-to {
    background: var(--cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.step-card {
    text-align: center;
    padding: var(--space-6);
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--pink-pastel);
    color: var(--brown-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
}

.step-icon {
    font-size: 3rem;
    margin: var(--space-6) 0 var(--space-4);
}

.step-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.step-card p {
    font-size: var(--text-sm);
    color: var(--brown-light);
}

.how-to-cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* ==========================================
   Location Section
   ========================================== */
.section-location {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-8);
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.location-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.location-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.location-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.location-card p {
    color: var(--brown-light);
    margin-bottom: var(--space-3);
}

.small-note {
    font-size: var(--text-xs);
    font-style: italic;
}

.delivery-options {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--cream-dark);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
}

.icon-small {
    width: 16px;
    height: 16px;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   CTA Section
   ========================================== */
.section-cta {
    background: linear-gradient(135deg, var(--pink-pastel) 0%, var(--pink-dark) 100%);
    padding: var(--space-16) 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--text-3xl);
    color: var(--brown-dark);
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--text-lg);
    color: var(--brown);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(253, 246, 233, 0.1);
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: var(--cream-dark);
    font-size: var(--text-sm);
}

.footer h4 {
    color: var(--cream);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a,
.footer-contact a {
    color: var(--cream-dark);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--pink-pastel);
}

.footer-location p {
    color: var(--cream-dark);
    font-size: var(--text-sm);
}

.footer-bottom {
    padding-top: var(--space-8);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--cream-dark);
}

.footer-tagline {
    margin-top: var(--space-2);
    font-size: var(--text-xs) !important;
}

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
}

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

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

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about-image {
        order: -1;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.5rem;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: var(--space-6);
        box-shadow: var(--shadow-lg);
    }

    .nav.active .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--space-4);
    }

    .nav.active .nav-link {
        display: block;
        padding: var(--space-3);
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .btn-header {
        display: none;
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul,
    .footer-contact ul {
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--space-16) 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .floating-badge {
        display: none;
    }

    .location-map iframe {
        height: 300px;
    }
}

/* ==========================================
   FAQ Section
   ========================================== */
.section-faq {
    background: var(--cream-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: var(--text-lg);
    margin: 0;
    color: var(--brown-dark);
    transition: color var(--transition-fast);
}

.faq-item:hover .faq-question h3 {
    color: var(--pink-dark);
}

.faq-icon {
    font-size: var(--text-2xl);
    color: var(--pink-pastel);
    font-weight: 300;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-4);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
    color: var(--brown-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   Responsive Styles
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {

    .header,
    .whatsapp-float,
    .hero-scroll {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-8) 0;
    }
}