@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
    --red:        #d71921;
    --red-dark:   #aa1118;
    --red-glow:   rgba(215, 25, 33, 0.18);
    --blue:       #003f7a;
    --blue-mid:   #005da9;
    --blue-light: #e8f0f9;
    --dark:       #0d0d0d;
    --dark-2:     #161616;
    --dark-3:     #1e1e1e;
    --gray-1:     #2a2a2a;
    --gray-2:     #444;
    --gray-3:     #888;
    --gray-4:     #bbb;
    --gray-5:     #ddd;
    --off-white:  #f7f5f2;
    --white:      #ffffff;
    --border:     rgba(255,255,255,0.08);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--blue);
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--blue);
}

p {
    color: var(--gray-2);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1rem;
    font-weight: 300;
}

a { text-decoration: none; color: inherit; }

/* ===========================
   UTILITIES
=========================== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.section { padding: 100px 0; }

.text-center { text-align: center; }

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.section-headline {
    position: relative;
    display: inline-block;
    padding-bottom: 22px;
    margin-bottom: 32px;
}

.section-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    transition: width var(--transition);
}

.section-headline.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   HEADER / NAV
=========================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--gray-5), var(--shadow-sm);
}

header.at-top {
    background: transparent;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 76px;
    transition: height var(--transition);
}

header.scrolled .header-inner {
    height: 64px;
}

.logo-broker {
    max-width: 140px;
    height: auto;
    display: block;
    transition: opacity var(--transition), transform var(--transition);
}

.logo-broker:hover { opacity: 0.85; transform: scale(1.03); }

.logo-broker-white {
    filter: brightness(0) invert(1);
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(10px, 1.4vw, 28px);
    align-items: center;
    flex-wrap: nowrap;
}

nav a {
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--dark);
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
    transition: color var(--transition);
}

header.at-top nav a {
    color: var(--white);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--red);
    transition: width var(--transition);
}

nav a:hover { color: var(--red); }
header.at-top nav a:hover { color: rgba(255,255,255,0.75); }
header.at-top nav a:hover::after { background: var(--white); }
nav a:hover::after { width: 100%; }

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
    box-shadow: 0 3px 12px var(--red-glow);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px var(--red-glow) !important;
}

/* ===========================
   MOBILE MENU
=========================== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1200;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

header.at-top .burger span { background: var(--white); }

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--dark) !important; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--dark) !important; }

/* Overlay: sempre no DOM, controlado por visibility + opacity */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Painel: sempre no DOM, desliza com transform */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    height: 100dvh; /* suporte a barra de endereço mobile */
    background: var(--white);
    z-index: 1150;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -6px 0 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.mobile-nav.active {
    transform: translateX(0);
    pointer-events: all;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 20px;
    border-bottom: 1px solid var(--gray-5);
    flex-shrink: 0;
}

.mobile-nav-head img { max-width: 120px; height: auto; display: block; }

/* Botão fechar dentro do painel */
.mobile-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-5);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 10;
    pointer-events: all;
}

.mobile-nav-close:hover,
.mobile-nav-close:active { background: var(--red); }

.mobile-nav-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-2);
    stroke-width: 2.5;
    transition: stroke 0.2s;
}

.mobile-nav-close:hover svg,
.mobile-nav-close:active svg { stroke: var(--white); }

.mobile-nav ul {
    list-style: none;
    padding: 8px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    padding: 17px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-5);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    -webkit-tap-highlight-color: transparent;
    min-height: 56px; /* área de toque confortável */
}

.mobile-nav ul li:last-child a {
    margin: 16px 20px;
    border-radius: 50px;
    background: var(--red);
    color: var(--white);
    border-bottom: none;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 4px 14px var(--red-glow);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a:active {
    background: var(--off-white);
    color: var(--red);
    padding-left: 32px;
}

.mobile-nav ul li:last-child a:hover,
.mobile-nav ul li:last-child a:active {
    background: var(--red-dark);
    color: var(--white);
    padding-left: 24px;
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 990;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* ===========================
   HERO / BANNER CAROUSEL
=========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    transform: scale(1.04);
    transition: opacity 1.4s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 30, 70, 0.45) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10vw;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215,25,33,0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s 0.3s both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 900;
    color: var(--white);
    max-width: 680px;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s 0.5s both;
}

.hero-title span { color: var(--red); }

.hero-sub {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.8s 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.9s both;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 18px var(--red-glow);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(215,25,33,0.35);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.hero-indicators {
    position: absolute;
    bottom: 36px;
    left: 10vw;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 28px;
    height: 3px;
    background: rgba(255,255,255,0.35);
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition);
}

.indicator.active {
    background: var(--white);
    width: 48px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ===========================
   STATS BAND
=========================== */
.stats-band {
    background: var(--blue);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(215,25,33,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.12);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number sup {
    font-size: 0.45em;
    vertical-align: super;
    font-weight: 500;
    opacity: 0.8;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
    background: var(--white);
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-col .section-tag { display: block; }

.about-text-col h2 {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    margin-bottom: 28px;
    padding-bottom: 22px;
}

.about-text-col h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--red);
    margin-top: 22px;
    border-radius: 2px;
}

.about-bullets {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--gray-2);
    font-weight: 300;
}

.bullet-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.bullet-icon svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.video-col .video-wrapper {
    position: relative;
    padding-bottom: 58%;
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-col .video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===========================
   PRODUCTS SECTION
=========================== */
.products-section {
    background: var(--off-white);
    padding: 120px 0;
}

.products-header { text-align: center; margin-bottom: 64px; }

.products-header h2 { color: var(--dark); }
.products-header .section-tag { color: var(--red); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 52px 36px 44px;
    border: 1px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.product-card:hover::before { transform: scaleX(1); }

.product-card:hover {
    border-color: var(--gray-5);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card-logo {
    width: 110px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 28px;
    display: block;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.product-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ===========================
   WHERE WE OPERATE
=========================== */
.operate-section {
    padding: 120px 0;
    background: var(--white);
}

.operate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.operate-map {
    position: relative;
}

.operate-map img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.operate-text h2 { margin-bottom: 8px; }

.operate-text p { margin-bottom: 1.2rem; }

/* ===========================
   ECOMMERCE SECTION
=========================== */
.ecommerce-section {
    background: var(--off-white);
    padding: 120px 0 0;
}

.ecommerce-inner { text-align: center; }
.ecommerce-inner h2 { color: var(--dark); margin-bottom: 8px; }

.ecommerce-desc {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 0.97rem;
    color: var(--gray-2);
    line-height: 1.9;
}

.ecommerce-banner-wrap {
    margin-top: 56px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ecommerce-banner-wrap a { display: block; }

.ecommerce-banner-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.ecommerce-banner-wrap:hover img { transform: scale(1.01); }

/* ===========================
   MERCHANDISING SECTION
=========================== */
.merch-section {
    padding: 120px 0;
    background: var(--white);
}

.merch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.merch-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.merch-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.1s ease;
}

.merch-slider img.active { opacity: 1; }

.merch-text h2 { margin-bottom: 8px; }

/* ===========================
   FOOTER
=========================== */
footer {
    background: var(--dark-2);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    transition: color var(--transition);
    line-height: 1.7;
}

.footer-col a:hover { color: var(--white); }

.footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 280px;
}

.footer-logo {
    max-width: 130px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    display: block;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(215,25,33,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.footer-contact-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--red);
}

.footer-contact-info {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

.footer-bottom-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-nestle-logo {
    max-height: 28px;
    opacity: 0.35;
    filter: brightness(0) invert(1);
}

/* ===========================
   MODAL
=========================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: modalFadeIn 0.3s ease;
}

.modal.active { display: flex; }

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-5);
    cursor: pointer;
    color: var(--gray-2);
    font-size: 1.2rem;
    line-height: 1;
    transition: all var(--transition);
    border: none;
}

.modal-close:hover {
    background: var(--red);
    color: var(--white);
}

.modal-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.modal-box h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-5);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px var(--blue-light);
}

.form-group input::placeholder { color: var(--gray-4); }

.modal-submit {
    width: 100%;
    margin-top: 8px;
    padding: 15px;
    font-size: 1rem;
}

/* ===========================
   RESPONSIVE
=========================== */

/* Intermediate: menu items get tighter between 900-1024px */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .operate-grid, .merch-grid { gap: 48px; }

    nav ul { gap: clamp(8px, 1vw, 16px); }
    nav a { font-size: 0.8rem; }
    .nav-cta { padding: 7px 14px !important; }
    .logo-broker { max-width: 120px; }
}

@media (max-width: 900px) {
    nav { display: none; }
    .burger { display: flex; }
}

@media (max-width: 768px) {
    .hero-content { padding: 0 6vw; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-scroll-hint { display: none; }

    .stats-inner { grid-template-columns: 1fr; }
    .stat-item::after { display: none; }
    .stat-item { padding: 40px 24px; }

    .about-grid,
    .operate-grid,
    .merch-grid { grid-template-columns: 1fr; gap: 36px; }

    .products-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand-desc { max-width: 100%; }

    .modal-box { padding: 36px 28px; }

    .hero-indicators { left: 6vw; }

    .section { padding: 72px 0; }
    .about-section, .products-section, .operate-section, .ecommerce-section, .merch-section { padding: 72px 0; }
    .ecommerce-section { padding-bottom: 0; }

    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .btn-outline-white, .btn-primary { width: 100%; justify-content: center; }
    .product-card { padding: 36px 24px 32px; }
}