/* ==========================================================================
   Gamerplace Institutional Stylesheet
   Identity: Dark Mode, Green Accent (#82e09b), Orange Accent (#f97316)
   ========================================================================== */

/* Variables & Design Tokens */
:root {
    /* Color Palette */
    --color-bg-primary: #0a090d;
    --color-bg-secondary: #121117;
    --color-bg-tertiary: #191820;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-focus: rgba(130, 224, 155, 0.4);
    
    --color-text-main: #f3f3f5;
    --color-text-muted: #9f9ea6;
    
    /* Brand Accent Colors */
    --color-green: #82e09b;
    --color-green-glow: rgba(130, 224, 155, 0.15);
    --color-orange: #f97316;
    --color-orange-glow: rgba(249, 115, 22, 0.25);
    
    /* GTA VI Context Colors (Exclusive for the promo section) */
    --gta-purple: #8b5cf6;
    --gta-pink: #ec4899;
    --gta-gradient: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --gta-glow: rgba(236, 72, 153, 0.2);

    /* Fonts */
    --font-titles: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-green: 0 0 25px rgba(130, 224, 155, 0.25);
    --shadow-orange: 0 8px 24px rgba(249, 115, 22, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    background-color: var(--color-bg-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titles);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
    text-wrap: balance;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a2a2a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.hero-subtitle,
.section-subtitle,
.gta-promo-description,
.operation-text,
.brands-text,
.contact-text,
.loja-branch-text,
.footer-desc {
    text-wrap: balance;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-green);
    color: #060508;
    font-family: var(--font-titles);
    font-weight: 800;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-green);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #9cf5b4;
    box-shadow: 0 0 35px rgba(130, 224, 155, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--font-titles);
    font-weight: 800;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Header & Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 9, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: var(--color-border);
    transition: var(--transition-smooth);
}

.navbar {
    transition: var(--transition-smooth);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    height: 120px;
    transition: var(--transition-smooth);
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 84px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-left: 14px;
    transition: var(--transition-smooth);
}

/* Scrolled state overrides */
.navbar.scrolled .navbar-container {
    height: 70px;
}

.navbar.scrolled .nav-logo {
    height: 42px;
}

.navbar.scrolled .logo-text {
    font-size: 1.20rem;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.nav-links a:hover {
    color: var(--color-orange);
}

.nav-gta-link {
    background: var(--gta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700 !important;
    position: relative;
}

.nav-gta-link:hover {
    filter: brightness(1.2);
}

.btn-nav-contact {
    border: 1px solid var(--color-green);
    color: var(--color-green) !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700 !important;
    background-color: rgba(130, 224, 155, 0.03);
}

.btn-nav-contact:hover {
    background-color: var(--color-green) !important;
    color: #060508 !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 70% 30%, rgba(130, 224, 155, 0.08) 0%, rgba(10, 9, 13, 0) 60%),
                radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.06) 0%, rgba(10, 9, 13, 0) 50%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-images-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: var(--transition-smooth);
    animation: floatHero 6s ease-in-out infinite;
}

.hero-images-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image-main {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(130, 224, 155, 0.05);
    transition: var(--transition-smooth);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.hero-images-subrow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-image-sub {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.hero-subimg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.hero-images-container:hover .hero-image-main,
.hero-images-container:hover .hero-image-sub {
    border-color: rgba(130, 224, 155, 0.3);
}

.hero-images-container:hover .hero-image-main {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(130, 224, 155, 0.2);
}

@keyframes floatHero {
    0%, 100% {
        transform: translateY(0) perspective(1000px) rotateY(-8deg) rotateX(4deg);
    }
    50% {
        transform: translateY(-12px) perspective(1000px) rotateY(-8deg) rotateX(4deg);
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(130, 224, 155, 0.1);
    border: 1px solid var(--color-border-focus);
    color: var(--color-green);
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pulse-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.hero-overlay-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--color-bg-primary), transparent);
    pointer-events: none;
}

/* GTA VI Promo Banner Section */
.gta-promo-section {
    padding: 60px 24px;
    background-color: var(--color-bg-primary);
}

.gta-promo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gta-promo-card {
    background: linear-gradient(135deg, rgba(25, 24, 32, 0.95) 0%, rgba(10, 9, 13, 0.98) 100%);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 
                0 0 35px rgba(236, 72, 153, 0.05);
    position: relative;
    overflow: hidden;
}

.gta-promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gta-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 48px;
}

.gta-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.3));
    transition: var(--transition-smooth);
}

.gta-promo-card:hover .gta-logo {
    transform: scale(1.04) rotate(-2deg);
}

.gta-badge {
    display: inline-block;
    background: var(--gta-gradient);
    color: #fff;
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.gta-promo-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.gta-promo-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.gta-promo-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-gta-cta {
    background: linear-gradient(135deg, var(--color-orange) 0%, #ea580c 100%);
    color: #fff;
    font-family: var(--font-titles);
    font-weight: 800;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-orange);
    letter-spacing: 0.5px;
}

.btn-gta-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.45);
    filter: brightness(1.1);
}

.btn-gta-link {
    font-family: var(--font-titles);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-bottom: 1px dashed var(--color-text-muted);
    padding-bottom: 2px;
}

.btn-gta-link:hover {
    color: #fff;
    border-color: #fff;
}

/* About / Diferenciais Section */
.about-section {
    padding: 100px 24px;
    background-color: var(--color-bg-secondary);
}

.diferenciais-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.diferencial-card {
    background-color: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    top: 0;
}

.diferencial-card:hover {
    top: -6px;
    border-color: rgba(255, 255, 255, 0.15);
    background-color: #201f28;
    box-shadow: var(--shadow-main);
}

.diferencial-icon {
    color: var(--color-green);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
}

.diferencial-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.diferencial-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Nossos Segmentos de Atuação */
.segmentos-section {
    padding: 100px 24px;
    background-color: var(--color-bg-primary);
}

.segmentos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.segmento-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.segmento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(130, 224, 155, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.segmento-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.segmento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.segmento-card:hover .segmento-img {
    transform: scale(1.05);
}

.segmento-content {
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    position: relative;
}

.segmento-icon-box {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-green);
    box-shadow: var(--shadow-main);
}

.segmento-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 5px;
}

.segmento-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .segmentos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Lojas Físicas Section & Carousel */
.lojas-section {
    padding: 100px 24px;
    background-color: var(--color-bg-primary);
}

.lojas-container {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption-external {
    text-align: center;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-green);
    margin-top: 0;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.carousel-control:hover {
    background-color: var(--color-green);
    color: #000;
    border-color: var(--color-green);
}

.carousel-control.prev {
    left: 20px;
    padding-right: 4px;
}

.carousel-control.next {
    right: 20px;
    padding-left: 4px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-indicators .dot.active {
    background-color: var(--color-green);
    width: 28px;
    border-radius: 5px;
}

.lojas-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.loja-info-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.loja-info-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.loja-branch-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.loja-branch-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.btn-link:hover {
    color: var(--color-green);
    border-color: var(--color-green);
}

/* Omnichannel & Marketplace Operations */
.omnichannel-section {
    padding: 100px 24px;
    background-color: var(--color-bg-secondary);
}

.omnichannel-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: center;
}

.operation-details {
    padding-right: 20px;
}

.operation-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}

.operation-text {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.marketplaces-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.market-logo-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px 18px;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Individual Brand Background Colors */
.market-logo-card.amazon {
    background-color: #152c3e;
}
.market-logo-card.tiktokshop {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}
.market-logo-card.mercadolivre {
    background-color: #fee600;
}
.market-logo-card.shopee {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}
.market-logo-card.magalu {
    background-color: #038cff;
}
.market-logo-card.kabum {
    background-color: #ff6900;
}

/* Hover States with Custom Glows */
.market-logo-card:hover {
    transform: translateY(-6px) scale(1.04);
}

.market-logo-card.amazon:hover {
    border-color: #ff9900;
    box-shadow: 0 15px 35px rgba(21, 44, 62, 0.6), 0 0 15px rgba(255, 153, 0, 0.3);
}
.market-logo-card.tiktokshop:hover {
    border-color: #ff0050;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 0, 80, 0.2);
}
.market-logo-card.mercadolivre:hover {
    border-color: #2d3277;
    box-shadow: 0 15px 35px rgba(254, 230, 0, 0.4), 0 0 15px rgba(45, 50, 119, 0.2);
}
.market-logo-card.shopee:hover {
    border-color: #ff3a27;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 58, 39, 0.3);
}
.market-logo-card.magalu:hover {
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(3, 140, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
}
.market-logo-card.kabum:hover {
    border-color: #0060b1;
    box-shadow: 0 15px 35px rgba(255, 105, 0, 0.5), 0 0 15px rgba(0, 96, 177, 0.3);
}

.market-logo {
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.market-logo-card:hover .market-logo {
    transform: scale(1.06);
}

/* Brands Section */
.brands-section {
    padding: 80px 24px;
    background-color: #ffffff; /* pure white background */
    color: #111827; /* dark text for readability */
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.brands-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.brands-info {
    max-width: 520px;
}

.brands-badge {
    display: inline-block;
    color: var(--color-orange);
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.brands-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
    color: #0f172a;
    font-family: var(--font-titles);
    text-transform: uppercase;
}

.brands-text {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.brands-text strong {
    color: #0f172a;
}

.brands-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.brand-logo-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-logo-card:hover {
    background-color: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.brand-logo-img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.75);
    transition: all 0.3s ease;
}

.brand-logo-card:hover .brand-logo-img {
    filter: grayscale(0) opacity(1);
}

@media (max-width: 1024px) {
    .brands-inner-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .brands-info {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .brands-logos-grid {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .brands-logos-grid {
        grid-template-columns: 1fr;
    }
    .brand-logo-card {
        height: 90px;
    }
}

/* Contact / Call to Action */
.contact-section {
    padding: 100px 24px;
    background-color: var(--color-bg-primary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: radial-gradient(circle at 10% 20%, rgba(130, 224, 155, 0.08) 0%, transparent 60%),
                var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-main);
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    justify-content: center;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    letter-spacing: 0.5px;
}

.btn-whatsapp-large:hover {
    transform: translateY(-2px);
    background-color: #20ba59;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

/* Footer Styles */
.footer {
    background-color: #060507;
    border-top: var(--color-border);
    padding: 80px 24px 50px 24px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
}

.footer-container:has(.footer-policies) {
    grid-template-columns: 1.2fr 1fr 1fr 0.75fr;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    align-self: flex-start;
    display: block;
    flex-shrink: 0;
    height: 76px;
    max-height: 76px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.footer-desc {
    line-height: 1.6;
}

.footer-info-title {
    color: #fff;
    font-size: 1.05rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-info p, .footer-legal p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-credit {
    border-top: 1px solid var(--color-border);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-credit p {
    margin: 0;
    line-height: 1.5;
}

.footer-credit a {
    color: var(--color-green);
    text-decoration: underline;
}

/* Scroll Reveal Base Class */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-images-container {
        max-width: 520px;
        margin: 30px auto 0 auto;
        transform: none !important;
        animation: floatHeroMobile 6s ease-in-out infinite;
    }

    @keyframes floatHeroMobile {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .gta-promo-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }
    
    .gta-logo-wrapper {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .omnichannel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .operation-details {
        padding-left: 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lojas-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .lojas-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu hambúrguer antes do menu horizontal encostar na logo */
@media (max-width: 1100px) {
    .navbar-container {
        height: 80px !important;
    }

    .nav-logo {
        height: 52px !important;
    }

    .logo-text {
        font-size: 1.1rem !important;
    }

    .logo-link {
        flex-shrink: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-secondary);
        border-left: var(--color-border);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 25px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .carousel-caption-external {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .carousel-control {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        height: 56px;
        max-height: 56px;
    }
    
    .marketplaces-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-credit {
        text-align: left;
        padding-right: 76px;
    }

    .footer-credit p {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        max-width: calc(100% - 4px);
    }
}

/* Floating WhatsApp Button with Pulsing Neon Glow */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 
                0 0 20px rgba(37, 211, 102, 0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba59;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 
                0 0 30px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 
                    0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 
                    0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 
                    0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Mobile readability refinements */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        text-wrap: pretty;
    }

    .hero-subtitle,
    .section-subtitle,
    .gta-promo-description,
    .operation-text,
    .brands-text,
    .contact-text,
    .loja-branch-text,
    .footer-desc {
        text-wrap: pretty;
    }

    .section-header {
        margin-bottom: 36px;
        padding: 0;
    }

    .section-title,
    .operation-title,
    .brands-title,
    .contact-title,
    .gta-promo-title {
        font-size: clamp(1.75rem, 6.2vw, 2.15rem);
        line-height: 1.18;
        letter-spacing: -0.03em;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.55rem);
        line-height: 1.12;
        letter-spacing: -0.035em;
        max-width: min(100%, 19ch);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle,
    .gta-promo-description,
    .operation-text,
    .brands-text,
    .contact-text {
        font-size: clamp(0.98rem, 3.8vw, 1.06rem);
        line-height: 1.62;
    }

    .gta-promo-card,
    .contact-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .operation-details {
        padding-right: 0;
        max-width: 620px;
        margin: 0 auto;
    }

    .gta-promo-actions,
    .contact-buttons {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-gta-cta,
    .btn-whatsapp-large {
        max-width: 100%;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .about-section,
    .gta-promo-section,
    .lojas-section,
    .omnichannel-section,
    .brands-section,
    .contact-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-section {
        padding-top: 112px;
        padding-bottom: 48px;
    }

    .hero-container {
        padding: 0;
        gap: 30px;
    }

    .hero-badge,
    .gta-badge,
    .brands-badge {
        font-size: 0.74rem;
        line-height: 1.35;
        letter-spacing: 0.08em;
        padding: 7px 12px;
    }

    .hero-title {
        font-size: clamp(1.85rem, 9.4vw, 2.1rem);
        max-width: min(100%, 18ch);
        margin-bottom: 18px;
    }

    .section-title,
    .operation-title,
    .brands-title,
    .contact-title,
    .gta-promo-title {
        font-size: clamp(1.55rem, 7.4vw, 1.85rem);
        line-height: 1.16;
    }

    .hero-subtitle,
    .gta-promo-description,
    .operation-text,
    .brands-text,
    .contact-text {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .hero-actions,
    .gta-promo-actions {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-gta-cta,
    .btn-whatsapp-large {
        width: min(100%, 320px);
        justify-content: center;
        padding: 13px 18px;
        font-size: 0.9rem;
        letter-spacing: 0.04em;
    }

    .gta-promo-card {
        padding: 28px 20px;
        gap: 24px;
    }

    .gta-logo-wrapper {
        padding-bottom: 22px;
    }

    .marketplaces-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
        gap: 12px;
    }

    .market-logo-card {
        height: 82px;
        padding: 8px 12px;
    }

    .contact-card {
        padding: 36px 22px;
    }

    .contact-text {
        margin-bottom: 28px;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 1rem !important;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: clamp(1.72rem, 9vw, 1.95rem);
    }

    .section-title,
    .operation-title,
    .brands-title,
    .contact-title,
    .gta-promo-title {
        font-size: 1.48rem;
    }

    .hero-subtitle,
    .gta-promo-description,
    .operation-text,
    .brands-text,
    .contact-text {
        font-size: 0.94rem;
    }
}

/* --- Checkout Error Messages --- */
.field-error {
    color: #ff4d4f;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
    animation: fadeIn 0.2s ease-in-out;
}

input.invalid {
    border-color: #ff4d4f !important;
    background-color: rgba(255, 77, 79, 0.05) !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
