/* ========================================
   Le Marché - Luxury Artisan Soap Landing Page
   Design: Elegant, Organic, Premium
======================================== */

:root {
    --cream: #FAF7F2;
    --cream-dark: #F5F0E8;
    --gold: #C9A962;
    --gold-light: #D4BC7B;
    --gold-dark: #B08D3A;
    --brown: #5C4A3D;
    --brown-light: #7A6555;
    --brown-dark: #3D3129;
    --rose: #E8D5D5;
    --rose-dark: #D4B8B8;
    --white: #FFFFFF;
    --black: #1A1A1A;

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

    --shadow-sm: 0 2px 8px rgba(92, 74, 61, 0.08);
    --shadow-md: 0 4px 20px rgba(92, 74, 61, 0.12);
    --shadow-lg: 0 8px 40px rgba(92, 74, 61, 0.16);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--brown);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
======================================== */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.1em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 500;
}

p {
    font-size: 1rem;
    font-weight: 300;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--brown-light);
}

/* ========================================
   Buttons
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--brown);
    border: 1px solid var(--brown);
}

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

.btn-light {
    background: var(--white);
    color: var(--brown);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 20px 40px;
    font-size: 1rem;
}

/* ========================================
   Section Badge
======================================== */

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

/* ========================================
   Promo Banner
======================================== */

.promo-banner {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 400;
}

.promo-banner strong {
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ========================================
   Navbar
======================================== */

.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 70px;
    width: 70px;
    transition: var(--transition);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.navbar.scrolled .nav-logo img {
    height: 55px;
    width: 55px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--brown);
    text-decoration: none;
    letter-spacing: 0.05em;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-cta {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

/* ========================================
   Hero Section
======================================== */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--rose) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.15);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--brown-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}


.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-light);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ========================================
   Sobre Section
======================================== */

.sobre {
    padding: 120px 0;
    background: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.sobre-content h2 {
    color: var(--brown-dark);
}

.sobre-content p {
    margin-bottom: 1.5rem;
    color: var(--brown-light);
}

.sobre-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--cream);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.welcome-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 1rem;
}

/* ========================================
   Produtos Section
======================================== */

.produtos {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    color: var(--brown-dark);
}

.section-header p {
    color: var(--brown-light);
    font-size: 1.125rem;
}

.produtos-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.produto-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.produto-card.featured {
    transform: scale(1.05);
}

.produto-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.produto-image {
    height: 300px;
    overflow: hidden;
}

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

.produto-card:hover .produto-image img {
    transform: scale(1.1);
}

.produto-info {
    padding: 30px;
    text-align: center;
}

.produto-info h3 {
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.produto-info p {
    color: var(--brown-light);
    font-size: 0.9rem;
}

.produtos-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature h4 {
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.875rem;
    color: var(--brown-light);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
}

/* ========================================
   Produtos Accordion
======================================== */

.produtos-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 80px;
}

.accordion-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(201, 169, 98, 0.05);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.accordion-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-icon-wrap.icon-only {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon-wrap.icon-only svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
}

.accordion-title-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 4px;
}

.accordion-title-wrap p {
    font-size: 0.9rem;
    color: var(--brown-light);
    margin: 0;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.accordion-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    transition: var(--transition);
}

.accordion-item.active .accordion-toggle {
    background: var(--gold);
}

.accordion-item.active .accordion-toggle svg {
    stroke: var(--white);
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 30px 30px;
}

.accordion-desc {
    color: var(--brown-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-dark);
}

.accordion-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.colecao-titulo {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--cream-dark);
}

.fragancias-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fragancias-lista.centered {
    justify-content: center;
}

.fragancias-lista span {
    padding: 8px 16px;
    background: var(--cream);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--brown);
    transition: var(--transition);
}

.fragancias-lista span:hover {
    background: var(--gold);
    color: var(--white);
}

.fragancias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.fragancias-grid.small {
    gap: 8px;
}

.fragancia-item {
    font-size: 0.85rem;
    color: var(--brown-light);
    line-height: 1.5;
}

.fragancia-item strong {
    display: block;
    color: var(--brown-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.fragancias-grid.small .fragancia-item {
    font-size: 0.8rem;
}

.fragancias-grid.small .fragancia-item strong {
    font-size: 0.85rem;
}

.categoria-image {
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
}

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

.produto-category:hover .categoria-image img {
    transform: scale(1.05);
}

/* ========================================
   Catálogo Visual
======================================== */

.catalogo-visual {
    padding: 120px 0;
    background: var(--white);
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.catalogo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.catalogo-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.catalogo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.catalogo-item:hover img {
    transform: scale(1.1);
}

.catalogo-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* ========================================
   FAQ Section
======================================== */

.faq {
    padding: 120px 0;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--brown-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item strong {
    color: var(--gold);
    font-weight: 600;
}

/* ========================================
   Footer Badges
======================================== */

.footer-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-badges span {
    padding: 6px 14px;
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
}

/* ========================================
   Aromas Section
======================================== */

.aromas {
    padding: 120px 0;
    background: var(--brown-dark);
    position: relative;
    overflow: hidden;
}

.aromas-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.section-header.light .section-badge {
    background: var(--gold);
}

.aromas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.aroma-item {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
    cursor: default;
}

.aroma-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.aroma-emoji {
    font-size: 2.5rem;
}

.aroma-name {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.aromas-cta {
    text-align: center;
}

.aromas-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* ========================================
   Videos Section
======================================== */

.videos {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(232, 213, 213, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.video-card-large {
    grid-row: span 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-card-large .video-wrapper {
    height: 100%;
    min-height: 400px;
}

.video-card:not(.video-card-large) .video-wrapper {
    aspect-ratio: 16/9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 74, 61, 0.4) 0%, rgba(92, 74, 61, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--gold);
    margin-left: 4px;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.video-card:not(.video-card-large) .play-btn {
    width: 60px;
    height: 60px;
}

.video-card:not(.video-card-large) .play-btn svg {
    width: 24px;
    height: 24px;
}

.video-info {
    padding: 24px;
}

.video-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.video-info p {
    color: var(--brown-light);
    font-size: 0.9rem;
}

.video-card-large .video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 40px 24px 24px;
}

.video-card-large .video-info h4,
.video-card-large .video-info p {
    color: var(--white);
}

/* ========================================
   Galeria Section
======================================== */

.galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.galeria-item {
    height: 300px;
    overflow: hidden;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   CTA Section
======================================== */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--rose) 0%, var(--cream) 100%);
}

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

.cta-content h2 {
    color: var(--brown-dark);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--brown-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   Footer
======================================== */

.footer {
    background: var(--brown-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 90px;
    width: 90px;
    margin-bottom: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-whatsapp {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    background: #20bd5a;
    transform: scale(1.05);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-motto {
    color: var(--gold) !important;
    margin-top: 8px;
}

/* ========================================
   WhatsApp Float Button
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    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: var(--transition);
}

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

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ========================================
   Animations
======================================== */

/* Fallback: mostrar elementos imediatamente se JS não carregar */
[data-animate] {
    opacity: 1;
    transform: none;
}

/* Quando JS está ativo, aplicar animações */
.js-loaded [data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-loaded [data-animate="fade-up"].animated,
[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

.js-loaded [data-animate="fade-right"] {
    transform: translateX(-30px);
}

.js-loaded [data-animate="fade-right"].animated,
[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

.js-loaded [data-animate="fade-left"] {
    transform: translateX(30px);
}

.js-loaded [data-animate="fade-left"].animated,
[data-animate="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

.js-loaded [data-animate="zoom-in"] {
    transform: scale(0.9);
}

.js-loaded [data-animate="zoom-in"].animated,
[data-animate="zoom-in"].animated {
    opacity: 1;
    transform: scale(1);
}

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

@media (max-width: 1024px) {
    .promo-banner {
        font-size: 0.75rem;
        padding: 10px 15px;
    }

    .navbar {
        top: 38px;
    }

    .accordion-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image::before {
        display: none;
    }

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

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .produtos-showcase {
        grid-template-columns: 1fr;
    }

    .produto-card.featured {
        transform: none;
    }

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

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

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

    .video-card-large {
        grid-row: span 1;
    }

    .video-card-large .video-wrapper {
        min-height: 300px;
    }

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

    .footer-badges {
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    .navbar {
        top: 52px;
    }

    .navbar.scrolled {
        top: 0;
    }

    /* Accordion Mobile */
    .accordion-header {
        padding: 16px 20px;
    }

    .accordion-icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .accordion-title-wrap h3 {
        font-size: 1.2rem;
    }

    .accordion-title-wrap p {
        font-size: 0.8rem;
    }

    .accordion-toggle {
        width: 36px;
        height: 36px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 20px;
    }

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

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

    .catalogo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* Footer Mobile Centralizado */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        gap: 40px;
    }

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

    .footer-logo {
        margin: 0 auto 16px;
    }

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

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

    .footer-badges {
        justify-content: center;
    }

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

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

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

    .footer-whatsapp {
        display: inline-block;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-image {
        margin-bottom: -10px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .hero-badge {
        margin-bottom: 1rem;
    }

    .hero-scroll {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
    }

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

    .aromas-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .aroma-item {
        flex: 0 0 calc(33.33% - 15px);
        min-width: unset;
        max-width: unset;
    }

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

    .galeria-item {
        height: 280px;
    }

    .galeria-item:nth-child(1) img {
        object-position: center 30%;
    }

    .galeria-item:nth-child(2) img {
        object-position: center 60%;
    }

    .galeria-item:nth-child(3) img {
        object-position: center 40%;
    }

    .galeria-item:nth-child(4) img {
        object-position: center 50%;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .sobre-badges {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        width: 100%;
    }

    .badge-item {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .aromas-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .aroma-item {
        flex: 0 0 calc(50% - 10px);
        min-width: unset;
        max-width: unset;
    }

    .badge-item {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}
