/* -------------------------------------------------------------
   DESIGN SYSTEM - FOFADEMAIS PERFUMARIA & PRESENTES
   ------------------------------------------------------------- */

/* Custom properties / Design tokens */
:root {
    /* Primary - Burgundy (Luxury, elegance) */
    --burgundy-900: #3D0E1C;
    --burgundy-700: #6B1A2E;
    --burgundy-500: #9B2442;
    --burgundy-300: #C96880;
    --burgundy-100: #F2D8DF;
    --burgundy-50:  #FBF0F3;

    /* Secondary - Amber (Warmth, gifts, celebration) */
    --amber-900: #412402;
    --amber-700: #7A4010;
    --amber-500: #C47A25;
    --amber-400: #E8A042;
    --amber-200: #F5D49A;
    --amber-50:  #FDF6E8;

    /* Support - Nude */
    --nude-900: #3A2E28;
    --nude-400: #B89880;
    --nude-200: #E8D8CC;
    --nude-50:  #FAF5F2;

    /* Functional */
    --color-wa: #1DAF52;
    --color-wa-hover: #169343;
    --color-text: #1A1614;
    --color-muted: #5C524E;
    --color-bg: #F0EDED;
    --color-white: #FFFFFF;

    /* Fonts */
    --font-title: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Grid & Spacing */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Base Headings & Typography */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--burgundy-900);
    line-height: 1.25;
}

p {
    font-size: 16px;
    color: var(--color-muted);
}

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

ul {
    list-style: none;
}

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

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy-500);
    display: block;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */
.btn-primary, .btn-secondary, .btn-whatsapp, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--burgundy-900);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--amber-500);
    color: var(--amber-900);
}

.btn-secondary:hover {
    background-color: var(--amber-400);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-wa);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: var(--color-wa-hover);
    transform: translateY(-2px);
}

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

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

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.icon-wa {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-right: 8px;
}

/* -------------------------------------------------------------
   ANNOUNCEMENT BAR & HEADER
   ------------------------------------------------------------- */
.announcement-bar {
    background-color: #0d0305;
    background-image: 
        linear-gradient(rgba(18, 4, 8, 0.4) 50%, transparent 50%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 4px, 6px 100%;
    border-bottom: 2px solid #23080e;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.95);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.announcement-ticker {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-animation 75s linear infinite;
    will-change: transform;
}

.announcement-ticker > span {
    font-family: 'VT323', monospace;
    font-size: 23px;
    letter-spacing: 0.12em;
    color: #00ff66;
    text-shadow: 
        0 0 2px rgba(0, 255, 102, 0.6),
        0 0 8px rgba(0, 255, 102, 0.8),
        0 0 15px rgba(0, 255, 102, 0.4);
    padding-right: 80px;
    flex-shrink: 0;
    display: inline-block;
    text-transform: uppercase;
}

@keyframes ticker-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes led-blink-animation {
    0%, 88%, 94%, 100% {
        color: #00ff66;
        text-shadow: 
            0 0 2px rgba(0, 255, 102, 0.6),
            0 0 8px rgba(0, 255, 102, 0.8),
            0 0 15px rgba(0, 255, 102, 0.4);
    }
    90%, 92% {
        color: #ffffff;
        text-shadow: 
            0 0 2px rgba(255, 255, 255, 0.8),
            0 0 10px rgba(255, 255, 255, 1),
            0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.led-blink {
    animation: led-blink-animation 5s infinite;
}

.main-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--nude-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 49px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.02);
}

.logo-footer {
    height: 55px;
    margin-bottom: 16px;
    display: block;
}

.nav-menu ul {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted);
}

.nav-menu a:hover {
    color: var(--burgundy-900);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--burgundy-900);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Nav Open State */
.nav-menu.open {
    display: flex;
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
    background-color: var(--burgundy-900);
    background-image: url('hero_land.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    text-align: left;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.12);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    padding: 0;
}

.hero-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--amber-400);
    display: block;
    margin-bottom: 16px;
}

.hero-section h1 {
    font-family: var(--font-title);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-section p {
    font-size: 18px;
    color: var(--burgundy-50);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(30, 5, 10, 0.95) 0%, rgba(30, 5, 10, 0.75) 50%, rgba(30, 5, 10, 0.2) 100%);
    z-index: 1;
}

/* -------------------------------------------------------------
   BRAND LOGOS MARQUEE
   ------------------------------------------------------------- */
.brands-section {
    background-color: #120308;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.brands-marquee::before,
.brands-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, #120308 0%, transparent 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, #120308 0%, transparent 100%);
}

.brands-track {
    display: flex;
    width: calc(150px * 28);
    animation: scrollMarquee 35s linear infinite;
}

.brand-slide {
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 20px;
}

.brand-slide img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    opacity: 0.45;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-slide img:hover {
    opacity: 0.95;
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 14));
    }
}

/* -------------------------------------------------------------
   DIFFERENTIALS
   ------------------------------------------------------------- */
.differentials-section {
    background-color: var(--nude-50);
    padding: 48px 0;
    border-bottom: 1px solid var(--nude-200);
}

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

.differential-item {
    display: flex;
    gap: 16px;
}

.diff-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: var(--burgundy-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--burgundy-700);
}

.differential-item h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--burgundy-900);
    margin-bottom: 4px;
}

.differential-item p {
    font-size: 13px;
    line-height: 1.4;
}

/* -------------------------------------------------------------
   CATEGORIES SECTION
   ------------------------------------------------------------- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    height: 380px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
}

.cat-card-content {
    padding: 32px 24px;
    color: var(--color-white);
    position: relative;
    z-index: 2;
    width: 100%;
}

.cat-card-content h3 {
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: 8px;
}

.cat-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,22,20,0) 40%, rgba(26,22,20,0.85) 100%);
    z-index: 1;
}

/* -------------------------------------------------------------
   PRODUCT SHOWCASE & CATALOG
   ------------------------------------------------------------- */
.catalog-section {
    background-color: var(--color-white);
    background-image: url('frag3.png');
    background-size: auto 280px;
    background-position: left 24px top 40px;
    background-repeat: no-repeat;
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .catalog-section {
        background-size: auto 220px;
        background-position: left 16px top 60px;
    }
}

@media (max-width: 992px) {
    .catalog-section {
        background-size: auto 170px;
        background-position: left 10px top 70px;
    }
}

@media (max-width: 768px) {
    .catalog-section {
        background-image: none;
    }
}

.catalog-controls {
    margin-bottom: 48px;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 1px solid var(--nude-200);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    background-color: var(--nude-50);
}

.search-box input:focus {
    border-color: var(--burgundy-500);
    background-color: var(--color-white);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: var(--color-muted);
}

.filter-groups {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background-color: var(--nude-50);
    border: 1px solid var(--nude-200);
    color: var(--color-muted);
    padding: 10px 22px;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--burgundy-700);
    border-color: var(--burgundy-700);
    color: var(--color-white);
}

.olfative-row {
    align-items: center;
    gap: 12px;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--burgundy-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-btn {
    background-color: var(--color-white);
    border: 1px solid var(--nude-200);
    color: var(--color-muted);
    padding: 6px 14px;
    font-size: 13px;
    font-family: var(--font-body);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.pill-btn:hover, .pill-btn.active {
    background-color: var(--amber-500);
    border-color: var(--amber-500);
    color: var(--amber-900);
}

/* Product Grid & Card (Aesthetics rule: 0.5px border, nude bg image container, no shadow) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.product-card {
    background-color: var(--color-white);
    border: 0.5px solid var(--nude-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-image-box {
    background-color: var(--nude-50);
    position: relative;
    width: 100%;
    aspect-ratio: 1; /* 1:1 square */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
}

.product-image-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

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

.product-badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--burgundy-900);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.product-info-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nude-400);
    font-weight: 600;
    margin-bottom: 6px;
}

.product-name-link {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: var(--burgundy-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-meta-desc {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 0.5px solid var(--nude-50);
}

.product-card-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--burgundy-900);
}

.product-card-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-pill);
    background-color: var(--burgundy-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900);
    transition: var(--transition);
}

.product-card-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.product-card:hover .product-card-btn {
    background-color: var(--burgundy-700);
    color: var(--color-white);
}



/* -------------------------------------------------------------
   SEASONAL BANNER
   ------------------------------------------------------------- */
.seasonal-banner {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--color-white);
    text-align: center;
}

.seasonal-content {
    max-width: 700px;
    margin: 0 auto;
}

.seasonal-content h2 {
    color: var(--color-white);
    font-size: 40px;
    margin-bottom: 24px;
}

.seasonal-content p {
    color: var(--burgundy-50);
    font-size: 16px;
    margin-bottom: 32px;
}

/* -------------------------------------------------------------
   OLFATIVE GUIDE SECTION
   ------------------------------------------------------------- */
.olfative-guide-section {
    background-color: var(--color-white);
}

.olfative-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.olfative-card {
    border: 0.5px solid var(--nude-200);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    background-color: var(--nude-50);
    transition: var(--transition);
}

.olfative-card:hover {
    background-color: var(--burgundy-50);
    border-color: var(--burgundy-300);
}

.olfative-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 16px;
}

.olfative-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.olfative-card p {
    font-size: 13px;
    line-height: 1.5;
}

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

/* -------------------------------------------------------------
   ABOUT LOJA SECTION
   ------------------------------------------------------------- */
.about-section {
    background-color: var(--nude-50);
    border-top: 1px solid var(--nude-200);
    border-bottom: 1px solid var(--nude-200);
}

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

.about-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    position: relative;
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--burgundy-900);
    color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 30px rgba(61, 14, 28, 0.2);
}

.about-experience-badge strong {
    font-size: 36px;
    line-height: 1;
    font-family: var(--font-title);
    color: var(--amber-400);
}

.about-experience-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.about-text span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--burgundy-500);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
}

/* -------------------------------------------------------------
   TESTIMONIALS SECTION
   ------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.testimonials-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 32px;
    will-change: transform;
}

.testimonials-carousel-track .testimonial-card {
    flex: 0 0 calc((100% - 64px) / 3);
    box-sizing: border-box;
}

.carousel-control {
    background-color: var(--burgundy-900);
    color: var(--color-white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(90, 18, 38, 0.15);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-control:hover {
    background-color: var(--burgundy-700);
    transform: scale(1.05);
}

.carousel-control:disabled {
    background-color: var(--nude-200);
    color: var(--color-muted);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--nude-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--burgundy-900);
    width: 24px;
    border-radius: 4px;
}

.testimonial-card {
    border: 0.5px solid var(--nude-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    background-color: var(--nude-50);
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--amber-500);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--color-text);
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 14px;
    color: var(--burgundy-900);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--color-muted);
}

/* -------------------------------------------------------------
   NEWSLETTER / SOCIAL LINKS
   ------------------------------------------------------------- */
.newsletter-section {
    background-color: var(--burgundy-900);
    background-image: linear-gradient(rgba(61, 14, 28, 0.85), rgba(61, 14, 28, 0.85)), url('redes_sociais.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: 80px 0;
}

.newsletter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.newsletter-info h2 {
    color: var(--color-white);
    font-size: 32px;
    margin-bottom: 12px;
}

.newsletter-info p {
    color: var(--burgundy-100);
    font-size: 15px;
    margin-bottom: 24px;
}

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

.social-link-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-white);
}

.social-link-item:hover {
    background-color: var(--color-white);
    color: var(--burgundy-900);
    transform: translateY(-2px);
}

.social-link-item svg {
    width: 20px;
    height: 20px;
}

.newsletter-form-container form {
    display: flex;
    gap: 12px;
}

.newsletter-form-container input {
    flex-grow: 1;
    border-radius: var(--radius-pill);
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,0.25);
    background-color: rgba(255,255,255,0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form-container input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form-container input:focus {
    background-color: var(--color-white);
    color: var(--color-text);
}

/* -------------------------------------------------------------
   CONTACT & LOCALIZACAO (Avenida Pasteur)
   ------------------------------------------------------------- */
.contact-section {
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-info span {
    font-size: 11px;
    font-weight: 700;
    color: var(--burgundy-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-desc {
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-details li {
    display: flex;
    gap: 16px;
}

.contact-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    background-color: var(--burgundy-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details strong {
    font-size: 14px;
    color: var(--burgundy-900);
}

.contact-details p {
    font-size: 14px;
}

.contact-map {
    border: 0.5px solid var(--nude-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--nude-50);
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.main-footer {
    background-color: var(--nude-50);
    border-top: 1px solid var(--nude-200);
    padding: 64px 0 32px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 13px;
    margin-top: 16px;
    max-width: 250px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: var(--color-muted);
}

.footer-col a:hover {
    color: var(--burgundy-900);
}

.footer-col p {
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid var(--nude-200);
    color: var(--burgundy-700);
    transition: var(--transition);
}

.footer-social-link-item:hover {
    background-color: var(--burgundy-700);
    color: var(--color-white);
    transform: translateY(-2px);
    border-color: var(--burgundy-700);
}

.footer-social-link-item svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--nude-200);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
}

/* -------------------------------------------------------------
   MODAL (Detalhes do Produto)
   ------------------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 22, 20, 0.7);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-muted);
    z-index: 5;
}

.modal-close:hover {
    color: var(--burgundy-900);
}

.modal-body-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.modal-image-container {
    background-color: var(--nude-50);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.modal-details {
    padding: 48px;
    display: flex;
    flex-direction: column;
    max-height: 550px;
    overflow-y: auto;
}

.product-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--burgundy-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.product-title {
    font-size: 28px;
    margin-bottom: 4px;
}

.product-brand {
    font-size: 14px;
    font-weight: 500;
    color: var(--nude-400);
    margin-bottom: 12px;
}

.product-meta {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 24px;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--burgundy-900);
    margin-bottom: 24px;
}

.product-description-section {
    margin-bottom: 24px;
}

.product-description-section h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-description-section p {
    font-size: 14px;
    line-height: 1.6;
}

.product-notes {
    margin-bottom: 32px;
}

.product-notes h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.note-tag {
    background-color: var(--nude-50);
    border: 1px solid var(--nude-200);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.modal-actions {
    margin-top: auto;
}

.modal-actions .btn-whatsapp {
    width: 100%;
}

/* -------------------------------------------------------------
   ANIMATIONS & TRANSITIONS
   ------------------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* -------------------------------------------------------------
   RESPONSIVITY / MEDIA QUERIES (Mobile First Rules)
   ------------------------------------------------------------- */

@media (max-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .olfative-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .catalog-section {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    /* Header & Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        border-bottom: 1px solid var(--nude-200);
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 16px;
        display: block;
        padding: 8px 0;
    }
    
    /* Hero */
    .hero-section {
        height: auto;
        padding: 100px 0;
        text-align: left;
        background-position: 80% center;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(30, 5, 10, 0.92) 0%, rgba(30, 5, 10, 0.75) 100%);
    }
    
    .hero-section h1 {
        font-size: 34px;
    }
    
    .hero-section p {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 280px;
    }
    
    /* Grid layout adjustments */
    .categories-grid, .products-grid, .olfative-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-carousel-track .testimonial-card {
        flex: 0 0 calc((100% - 32px) / 2);
    }
    
    .testimonials-carousel-container {
        gap: 12px;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .about-experience-badge {
        bottom: 16px;
        right: 16px;
        padding: 16px;
    }
    
    .about-experience-badge strong {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .modal-body-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image-container {
        padding: 24px;
    }
    
    .modal-details {
        padding: 24px;
        max-height: 400px;
    }

}

@media (max-width: 560px) {
    .differentials-grid, .categories-grid, .products-grid, .olfative-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel-track .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-carousel-container {
        gap: 8px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
    }


    
    .header-actions .btn-whatsapp {
        display: none; /* Hide button on small devices header to prioritize hamburger */
    }
    
    .announcement-bar p {
        font-size: 11px;
    }
}

/* -------------------------------------------------------------
   FLOATING WHATSAPP BUTTON WITH ANIMATIONS
   ------------------------------------------------------------- */
.floating-whatsapp-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    z-index: 999;
    pointer-events: none;
}

.whatsapp-btn-float {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    background-color: var(--color-wa);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(29, 175, 82, 0.4);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: waPulse 2s infinite;
}

.whatsapp-btn-float:hover {
    background-color: var(--color-wa-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(29, 175, 82, 0.6);
}

.whatsapp-tooltip {
    pointer-events: auto;
    position: absolute;
    right: 76px;
    background-color: var(--burgundy-900);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--burgundy-900);
}

.floating-whatsapp-container.show-tooltip .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 175, 82, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(29, 175, 82, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(29, 175, 82, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp-container {
        bottom: 24px;
        right: 24px;
    }
    .whatsapp-btn-float {
        width: 52px;
        height: 52px;
    }
    .whatsapp-tooltip {
        right: 64px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

@keyframes neon-pulse-jc-animation {
    0%, 100% {
        color: inherit;
        text-shadow: none;
    }
    50% {
        color: #00ff66;
        text-shadow: 
            0 0 3px rgba(0, 255, 102, 0.8),
            0 0 8px rgba(0, 255, 102, 0.5);
    }
}

.neon-pulse-jc {
    font-weight: 700;
    transition: var(--transition);
    animation: neon-pulse-jc-animation 2s infinite ease-in-out;
}

