/* Base & Variables */
:root {
    --color-flamengo-red: #C3281E;
    --color-flamengo-darkred: #961f17;
    --color-black: #000000;
    --color-dark-gray: #111111;
    --color-card-bg: rgba(25, 25, 25, 0.7);
    --color-gold: #CDAF41;
    /* Matches package gold tones */
    --color-gold-light: #E9CF63;
    --color-gourmet-gold: #CDAF41;
    --color-gourmet-dark: #1a1a1a;
    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-text-main);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--color-flamengo-red);
}

.highlight-gold {
    color: var(--color-gold);
}

.highlight-gourmet {
    color: var(--color-gourmet-gold);
    text-shadow: 0 0 15px rgba(239, 213, 125, 0.3);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
}

.badge-red {
    background: rgba(195, 40, 30, 0.15);
    color: #ff3c2f;
    border-color: rgba(195, 40, 30, 0.4);
    box-shadow: 0 0 20px rgba(195, 40, 30, 0.1);
}

.badge-gold {
    background: rgba(205, 175, 65, 0.15);
    color: var(--color-gold);
    border-color: rgba(205, 175, 65, 0.4);
    box-shadow: 0 0 20px rgba(205, 175, 65, 0.1);
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.image-placeholder::after {
    content: 'Espaço para Imagem';
    color: #555;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.image-placeholder.gourmet-style {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: var(--color-gourmet-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(195, 40, 30, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-flamengo-red) 0%, var(--color-flamengo-darkred) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(195, 40, 30, 0.3);
}

.btn-gourmet {
    background: linear-gradient(135deg, var(--color-gourmet-gold) 0%, var(--color-gold) 100%);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(205, 175, 65, 0.3);
}

.btn-gourmet::before {
    background: rgba(255, 255, 255, 0.2);
}

.btn-gourmet:hover {
    box-shadow: 0 10px 20px rgba(205, 175, 65, 0.5);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Utility Classes for Responsive Controls */
.mobile-break {
    display: none;
}

.hide-on-mobile {
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: center !important;
    }

    .navbar nav {
        display: none !important;
    }
}

.header-centered .container {
    justify-content: center;
}

.header-centered .logo-area {
    margin: 0 auto;
}

.nav-logo {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--color-text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-flamengo-red);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Layered Section */
.hero-layered {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top-to-bottom black overlay for better contrast */
.hero-layered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%; /* Extendido para descer mais na tela */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2; /* Fica atrás dos jogadores (z-index 3) e na frente do vídeo (z-index 1) */
    pointer-events: none;
}

.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Layer 0: Background */
.layer-bg {
    z-index: 1;
}

.img-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: bg-settle 1.8s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
    animation-delay: 0.8s;
}

/* Layer 1: Players */
.layer-players {
    z-index: 3;
}

.player-img {
    position: absolute;
    bottom: 0;
    height: 90vh;
    /* Increased from 85vh for more impact */
    object-fit: contain;
    transition: transform 0.5s ease;
    opacity: 0;
    transform: translateY(100%);
}

.player-center {
    z-index: 5;
    animation: slide-up-player 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.5s;
}

.player-left {
    z-index: 4;
    left: 20%;
    /* Brought closer to center */
    animation: slide-up-player 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.7s;
}

.player-right {
    z-index: 4;
    right: 20%;
    /* Brought closer to center */
    animation: slide-up-player 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.9s;
}

/* Layer 2: Product Foreground */
.layer-product {
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.product-container {
    position: relative;
    width: 100%;
    height: 60vh; /* Retornado para 60vh para tamanho ideal */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
    transform: translateY(120%);
    animation: slide-up-product 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.2s;
}

@media (min-width: 2100px) {
    .product-container {
        height: 70vh; /* Volta para 70vh apenas em telas ultra-wide */
    }
}

.product-main {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

@media (min-width: 2100px) {
    .product-main {
        max-width: none;
        width: 100%;
        object-fit: cover;
    }
}

/* Smoke System Styles */
.smoke-system {
    position: absolute;
    bottom: 22vh;
    /* Lowered to sit exactly on the mug rim */
    left: 50.5%;
    /* Micro-adjustment to center with the mug visual */
    transform: translateX(-50%);
    z-index: 100;
    pointer-events: none;
    display: block;
    width: 250px;
    /* Wider for more presence */
    height: 250px;
}

.smoke-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.smoke {
    width: 100%;
    filter: blur(2px);
    /* Reduced blur for visibility */
    opacity: 0;
    mix-blend-mode: screen;
    /* Helps blend with dark background */
}

.smoke-1 {
    animation: smoke1 4s ease-in-out infinite;
    animation-delay: 0.2s;
}

.smoke-2 {
    animation: smoke2 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.smoke-3 {
    animation: smoke3 5s ease-in-out infinite;
    animation-delay: 2.8s;
}

@keyframes smoke1 {
    0% {
        transform: translateY(0) scale(0.5) rotate(0deg);
        opacity: 0;
        filter: blur(2px);
    }

    30% {
        opacity: 1;
    }

    /* Full opacity */
    100% {
        transform: translateY(-150px) scale(1.8) rotate(15deg);
        opacity: 0;
        filter: blur(12px);
    }
}

@keyframes smoke2 {
    0% {
        transform: translateY(0) scale(0.5) rotate(0deg);
        opacity: 0;
        filter: blur(2px);
    }

    30% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-180px) scale(2.2) rotate(-20deg);
        opacity: 0;
        filter: blur(18px);
    }
}

@keyframes smoke3 {
    0% {
        transform: translateY(0) scale(0.6) rotate(0deg);
        opacity: 0;
        filter: blur(2px);
    }

    30% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-220px) scale(2.8) rotate(10deg);
        opacity: 0;
        filter: blur(25px);
    }
}

/* Animations */
@keyframes bg-settle {
    to {
        transform: scale(1);
    }
}

@keyframes slide-up-product {
    0% {
        transform: translateY(120%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slide-up-player {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero UI Overlay System */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    padding: 40px;
}

.hero-branding-right {
    position: absolute;
    top: 30px;
    right: 30px;
    pointer-events: auto;
}

.logo-crf-hero {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-headline-left {
    position: absolute;
    top: 10vh; /* Mais para cima */
    left: 4%;
    max-width: 380px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha tudo à esquerda */
    gap: 5px;
}

.headline-part {
    display: block;
    width: 100%;
}

.headline-part.energia svg {
    width: 55%; /* Menor como solicitado */
    height: auto;
}

.headline-part.nacao svg {
    width: 100%; /* Destaque principal */
    height: auto;
}

.headline-part.xicara svg {
    width: 80%; /* Tamanho intermediário */
    height: auto;
}

.headline-part svg {
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.hero-cta-center {
    position: absolute;
    bottom: 3vh; /* Levemente mais para cima para não brigar com o badge */
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
}

.hero-official-badge {
    position: absolute;
    bottom: 40px;
    left: 6%;
    font-size: 1rem; /* Maior e com mais destaque */
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8); /* Mais visível */
    text-transform: uppercase;
    z-index: 1000;
    pointer-events: none;
    border-left: 3px solid var(--color-flamengo-red);
    padding-left: 15px;
    line-height: 1;
}

.btn-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #c3281e 0%, #a11e15 100%);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(195, 40, 30, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(195, 40, 30, 0.6);
    filter: brightness(1.1);
}

.btn-shimmer {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer { 100% { left: 200%; } }
@keyframes fade-in-up { 
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Capsule Teaser Section */
.capsule-teaser {
    background-color: var(--color-black);
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.capsule-teaser-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.capsule-text {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
}

.capsule-text.left {
    text-align: right;
    color: var(--color-text-main);
}

.capsule-text.right {
    text-align: left;
    color: var(--color-gold);
}

.capsule-image {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.capsule-image img {
    height: 140px;
    width: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
    transition: var(--transition-bounce);
}

.capsule-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.btn-red-promo {
    background-color: var(--color-flamengo-red);
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(195, 40, 30, 0.4);
    display: inline-block;
    text-align: center;
}

.btn-red-promo:hover {
    background-color: var(--color-flamengo-darkred);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(195, 40, 30, 0.6);
    color: #ffffff;
}

@media (max-width: 992px) {
    .capsule-text {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }
    .capsule-image img {
        height: 110px;
    }
}

@media (max-width: 768px) {
    .capsule-teaser {
        padding: 60px 0;
    }

    .capsule-teaser-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .capsule-text {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .capsule-text.left, .capsule-text.right {
        text-align: center;
    }

    .capsule-image img {
        height: 140px;
        margin: 0 auto;
    }

    .btn-red-promo {
        padding: 16px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 320px;
    }
}
.apas-section {
    padding: 80px 0;
    background-color: #050505;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.apas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('public/novas/Galeria/magnific_esse-cafe-em-uma-na-parea_2990040431 copy.webp') center/cover no-repeat;
    filter: blur(10px);
    transform: scale(1.1);
    z-index: 1;
    opacity: 0.6;
}

.apas-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.apas-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.apas-pre-title {
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    opacity: 0.8;
}

.apas-logo-text {
    font-size: 5rem;
    font-weight: 900;
    margin: 0;
    text-transform: lowercase;
    line-height: 1.1;
    letter-spacing: -3px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.apas-logo-text span {
    color: var(--color-flamengo-red);
}

.apas-logo-text small {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
    font-style: italic;
    font-weight: 800;
}

.apas-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--color-text-main);
    margin-top: 15px;
    text-transform: uppercase;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.apas-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.apas-info-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.apas-info-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    border-color: rgba(205, 175, 65, 0.3);
}

.apas-info-item.highlight-stand {
    background: radial-gradient(circle at top left, rgba(205, 175, 65, 0.12), rgba(205, 175, 65, 0.04));
    border: 1px solid var(--color-gold);
}

.apas-info-item.highlight-stand strong {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.apas-info-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

.apas-icon {
    color: var(--color-gold);
    width: 28px;
    height: 28px;
}

.apas-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.apas-footer p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.apas-final {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.apas-final span.highlight-gold {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold-shine 4s linear infinite;
}

@keyframes gold-shine {
    to { background-position: 200% center; }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .player-img {
        height: 60vh;
    }

    .player-left {
        left: 0;
    }

    .player-right {
        right: 0;
    }

    .product-main {
        height: 45vh;
    }

    .smoke-system {
        bottom: 14vh;
    }
}

@media (max-width: 768px) {
    .apas-section {
        padding: 60px 0;
    }

    .apas-logo-text {
        font-size: 3.2rem;
        letter-spacing: -2px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .apas-logo-text small {
        font-size: 1.6rem;
        margin-top: 5px;
    }

    .apas-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
        padding: 0 20px;
    }

    .apas-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 35px 0;
        padding: 0 25px;
    }

    .apas-info-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
        gap: 20px;
        text-align: left;
        border-radius: 12px;
    }

    .apas-info-item span {
        font-size: 1rem;
    }

    .apas-info-item.highlight-stand strong {
        font-size: 1.15rem;
    }

    .apas-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .apas-footer {
        margin-top: 30px;
        padding-top: 25px;
    }

    .apas-footer p {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .apas-final {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-overlay-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px; /* Leve ajuste para acomodar o texto maior */
        text-align: center;
    }

    .hero-branding-right {
        position: absolute; /* Mantém a logo no canto independente do flex */
        top: 30px;
        right: 30px;
    }

    .hero-headline-left {
        position: relative; /* Muda de absolute para relative para seguir o fluxo */
        top: auto;
        left: auto;
        transform: none;
        align-items: center;
        width: 100%;
        max-width: none;
        gap: 0;
    }

    .headline-part {
        display: flex !important;
        justify-content: center !important;
        margin-top: 0 !important;
        width: 100% !important;
    }

    .headline-part.energia svg { width: 40%; }
    .headline-part.nacao svg { width: 85%; }
    .headline-part.xicara svg { width: 65%; }

    .hero-cta-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 50px; /* Mais espaço para não ficar colado */
    }

    .hero-official-badge {
        position: relative;
        bottom: auto;
        left: auto;
        border-left: none;
        padding-left: 0;
        margin-top: 1px; /* Espaço após o botão */
        font-size: 0.7rem; /* Maior no mobile também */
        font-weight: 700;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.6);
        width: 100%;
        text-align: center;
        display: block;
    }

    .btn-hero-cta {
        white-space: nowrap;
        font-size: 1rem !important;
        padding: 15px 30px !important;
        width: auto !important;
        min-width: 280px;
    }

    .player-img {
        height: 48vh; /* Menores como solicitado */
        bottom: 2vh; /* Mais para baixo */
    }

    .product-main {
        height: 35vh;
        /* Adjusted for mobile */
    }

    .smoke-system {
        bottom: 10vh;
    }

    .img-hero-bg {
        object-position: center;
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Emotions Section */
.connection {
    padding: 120px 0;
    background-color: var(--color-dark-gray);
    background: radial-gradient(circle at right bottom, rgba(195, 40, 30, 0.08) 0%, var(--color-dark-gray) 70%);
    position: relative;
    overflow: hidden;
}

.connection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-flamengo-red), transparent);
}

.connection-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Give more space to the image */
    gap: 80px;
    align-items: center;
}

.connection-image {
    position: relative;
    border-radius: 40px;
    /* More pronounced rounded corners */
    overflow: hidden;
    /* Ensure image follows rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.connection-image::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(195, 40, 30, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

.connection-image img {
    width: 100%;
    /* Full width of its expanded container */
    height: auto;
    display: block;
    transition: var(--transition-bounce);
    border-radius: 40px;
}

.connection-image:hover img {
    transform: scale(1.08) translateY(-10px);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
}

.connection-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.connection-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.check-list {
    margin-top: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    color: var(--color-flamengo-red);
    font-weight: 800;
    font-size: 1.2rem;
}

.consumer-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.consumer-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.consumer-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(195, 40, 30, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.consumer-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-flamengo-red);
    margin-top: 4px;
}

.consumer-text {
    flex: 1;
}

.consumer-text strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.consumer-text span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--color-black);
    position: relative;
    background-image: radial-gradient(circle at center, rgba(195, 40, 30, 0.05) 0%, transparent 70%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(to bottom, #111111, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

/* Big number watermark */
.step-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    line-height: 1;
    transition: color 0.4s ease;
}

.feature-card>*:not(.step-number) {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(195, 40, 30, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(195, 40, 30, 0.15);
}

.feature-card:hover .step-number {
    color: rgba(195, 40, 30, 0.05);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(195, 40, 30, 0.15), transparent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--color-gold);
    border: 1px solid rgba(195, 40, 30, 0.2);
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    background: var(--color-flamengo-red);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-flamengo-red);
    box-shadow: 0 0 20px rgba(195, 40, 30, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}



/* About Coffee Section - Refined Magazine Style */
.about-coffee-section {
    padding: 140px 0;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.label-gold {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.title-large {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* Row 1: History */
.history-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.history-info {
    flex: 1;
}

.history-description .lead {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--color-white);
    margin-bottom: 30px;
    font-weight: 500;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    margin-bottom: 30px;
}

.history-description .sub-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.history-visual {
    flex: 1;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.frame-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    z-index: 1;
}

/* Part 2: Split Row */
.about-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-info-card {
    background: #111;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition-smooth);
}

.about-info-card:hover {
    border-color: rgba(195, 40, 30, 0.3);
    transform: translateY(-10px);
}

.quality-card .card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.abic-badge {
    width: 140px;
    height: 140px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    background: rgba(195, 40, 30, 0.05);
}

.badge-tag { font-size: 0.6rem; font-weight: 700; color: #fff; }
.badge-main { font-size: 1.8rem; font-weight: 900; color: var(--color-gold); }
.badge-desc { font-size: 0.5rem; font-weight: 600; color: #fff; }

.brazil-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 700;
}

.origin-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.es-flag-stylized {
    width: 60px;
    height: 40px;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
}

.stripe-b { height: 33%; background: #0080FF; }
.stripe-w { height: 34%; background: #fff; font-size: 3px; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 900; }
.stripe-p { height: 33%; background: #FFC0CB; }

.origin-quote {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-style: italic;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.about-final-statement {
    margin-top: 100px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 50px;
}

.about-final-statement p {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 1024px) {
    .history-block {
        flex-direction: column;
        text-align: center;
    }
    
    .gold-line { margin: 0 auto 30px; }
    
    .about-split-row {
        grid-template-columns: 1fr;
    }
    
    .quality-card .card-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .title-large { font-size: 2.5rem; }
}


/* Nação Impact Section (Inspired by Image 2) */
.nacao-impact-section {
    position: relative;
    padding: 140px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.impact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-impact {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.6) contrast(1.1);
}

.impact-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
}

.nacao-impact-section .container {
    position: relative;
    z-index: 2;
}

.impact-content {
    max-width: 650px;
}

.impact-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.impact-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    border-left: 3px solid var(--color-flamengo-red);
    padding-left: 25px;
}

.btn-gold-border {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 18px 35px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.btn-gold-border:hover {
    background: var(--color-gold);
    color: #000;
    transform: translateX(10px);
}

.btn-gold-border svg {
    transition: transform 0.3s ease;
}

.btn-gold-border:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .impact-title { font-size: 2.8rem; }
    .impact-bg-overlay::after {
        background: rgba(0,0,0,0.8);
    }
    .impact-content { text-align: center; }
    .impact-description { padding-left: 0; border-left: none; }
}


/* Expert Statement Section (José do Brasil) */
.expert-statement-section {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.expert-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.expert-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
}

.bg-impact {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.expert-statement-section .container {
    position: relative;
    z-index: 2;
}

.expert-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.expert-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.expert-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 500px;
}

.expert-quote-content {
    position: relative;
    padding-left: 40px;
    border-left: 1px solid rgba(255,255,255,0.1);
}


.quote-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 40px;
}

.expert-signature {
    margin-top: 20px;
}

.signature-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1); /* Se a logo for escura, inverte para branco/dourado dependendo do arquivo */
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .expert-quote-content {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 40px;
    }
    
    .expert-title { font-size: 2.5rem; }
}

/* Made For All Section */
.made-for-all-section {
    padding: 80px 0;
    background-color: var(--color-black);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.todos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
}

.todos-item {
    position: relative;
    overflow: hidden;
    height: 85vh;
    min-height: 600px;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.todos-item:last-child {
    border-right: none;
}

.todos-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.todos-item:hover img {
    transform: scale(1.1);
}

.todos-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(195, 40, 30, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.todos-item:hover::after {
    opacity: 1;
}

@media (max-width: 992px) {
    .todos-item {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .todos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .todos-item {
        height: 400px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-right: none;
    }

    .todos-item:nth-child(even) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .todos-item:last-child {
        grid-column: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-right: none;
    }

    .todos-item:first-child {
        grid-column: span 2;
        order: 1;
        border-bottom: none;
        height: auto;
        aspect-ratio: 9/16;
    }

    .todos-item img {
        object-position: top center;
    }
}

@media (max-width: 480px) {
    .todos-grid {
        grid-template-columns: 1fr;
    }

    .todos-item:last-child {
        grid-column: span 1;
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: var(--color-black);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-description {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-featured-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-frame {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-img-frame.main {
    width: 90%;
    z-index: 1;
}

.about-img-frame.support {
    width: 80%;
    margin-left: auto;
    margin-top: -15%;
    z-index: 2;
    border: 2px solid var(--color-primary);
    box-shadow: 0 20px 40px rgba(195, 40, 30, 0.2);
}

.about-img-frame img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-frame:hover img {
    transform: scale(1.05);
}

/* Mix de Produtos Section */
.mix-section {
    padding: 120px 0;
    background-color: #050505;
    position: relative;
}

.mix-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    margin-top: 60px;
    align-items: center;
}

.mix-text-side p {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.mix-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.mix-main-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mix-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.mix-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    text-align: center;
}

.mix-feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: rgba(195, 40, 30, 0.3);
}

.mix-feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 25px;
}

.mix-feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.mix-feature-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {

    .about-grid,
    .mix-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-content h2 {
        text-align: center !important;
    }

    .about-img-frame.main,
    .about-img-frame.support {
        width: 100%;
        margin-top: 0;
    }

    .mix-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mix-features-grid {
        grid-template-columns: 1fr;
    }
}

.highlight-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--color-black), #0a0a0a, var(--color-black));
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-grid-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 50px;
}

.highlight-left {
    max-width: 400px;
}

.highlight-left h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.highlight-left p {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
}

.highlight-right {
    max-width: 400px;
}

.highlight-benefits-vertical {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.highlight-benefits-vertical li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    background: rgba(195, 40, 30, 0.1);
    border: 1px solid rgba(195, 40, 30, 0.3);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Phones */
.highlight-center {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.highlight-mockup-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.highlight-mockup {
    position: relative;
    padding: 20px;
    /* Space for glow */
}

/* Glowing background behind phone */
.highlight-mockup::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(195, 40, 30, 0.6) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(50px);
    transition: opacity 0.5s ease;
}

/* Realistic Phone Mockup */
.phone-mockup {
    width: 340px;
    height: 690px;
    background: #111;
    border-radius: 50px;
    padding: 12px;
    /* Outer metal frame and inner bevel shadow */
    box-shadow:
        inset 0 0 0 2px #555,
        inset 0 0 0 7px #0a0a0a,
        0 40px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    overflow: visible;
    background: linear-gradient(135deg, #2a2a2c 0%, #111 50%, #0a0a0a 100%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.highlight-mockup:hover .phone-mockup {
    transform: translateY(-10px);
}

.phone-glass-glare {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 38px;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 20;
}

/* Volume and Power Buttons */
.phone-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.phone-buttons::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 130px;
    width: 4px;
    height: 25px;
    background: #3a3a3c;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 50px 0 #3a3a3c, 0 110px 0 #3a3a3c;
    z-index: -1;
}

.phone-buttons::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 180px;
    width: 4px;
    height: 65px;
    background: #3a3a3c;
    border-radius: 0 2px 2px 0;
    z-index: -1;
}

/* Dynamic Island style notch */
.phone-notch {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.15), 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Camera Lens Reflection */
.phone-notch::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #4a5c92, #0b101d);
    border-radius: 50%;
    box-shadow: inset 1px -1px 3px rgba(100, 150, 255, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111;
    position: relative;
    border-radius: 40px;
    /* Matches outer curve */
    overflow: hidden;
    cursor: pointer;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    backdrop-filter: blur(2px);
    z-index: 5;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px);
}

.play-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(195, 40, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(195, 40, 30, 0.6);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-circle svg {
    margin-left: 5px;
    /* Visual center for triangle */
}

.phone-screen:hover .play-circle {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--color-dark-gray);
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

/* Infinite Carousel */
.carousel-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 60px;
    /* Fading edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: max-content;
    animation: scroll-infinite 25s linear infinite;
    align-items: stretch;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.review-card {
    background: var(--color-black);
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 3px solid var(--color-flamengo-red);
    width: 380px;
    min-width: 380px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: var(--color-dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-gold);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info strong {
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.cta-section {
    position: relative;
    padding-top: 40px;
    background-image: url('public/cozinha.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(195, 40, 30, 0.8) 100%);
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text-side {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.cta-text-side h2 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-text-side p {
    font-size: 1.3rem;
    color: #f1f1f1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.cta-players-img {
    max-width: 120%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    margin-right: -100px; /* Overlap effect if needed */
    pointer-events: none;
}

.cta-btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: #020202;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-centralized {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin: 20px 0;
    max-width: 400px;
}

.crf-seal {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.footer-bottom {
    background: #000;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Animations & Utilities */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Parallax Coffee Beans */
.parallax-bean {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    animation: floating-bean 6s ease-in-out infinite alternate;
}

@keyframes floating-bean {
    0% {
        transform: translateY(var(--scroll-offset, 0px)) rotate(0deg);
    }

    100% {
        transform: translateY(calc(var(--scroll-offset, 0px) - 20px)) rotate(10deg);
    }
}

/* Specific Bean Positions */
/* Hero section */
.bean-1 {
    top: 10%;
    left: 2%;
    width: 110px;
    animation-duration: 7s;
    opacity: 0.7;
    filter: blur(3px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.bean-2 {
    bottom: 15%;
    right: 2%;
    width: 140px;
    animation-duration: 5s;
    animation-delay: -2s;
    opacity: 0.8;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.bean-3 {
    top: 40%;
    right: -2%;
    width: 90px;
    animation-duration: 9s;
    opacity: 0.6;
    filter: blur(5px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.bean-4 {
    bottom: 5%;
    left: -3%;
    width: 130px;
    animation-duration: 6s;
    opacity: 0.75;
    filter: blur(2px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

/* Features section */
.bean-5 {
    top: 20%;
    left: 3%;
    width: 120px;
    animation-duration: 6.5s;
    opacity: 0.8;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.bean-6 {
    bottom: 10%;
    right: -1%;
    width: 95px;
    animation-duration: 5.5s;
    animation-delay: -1s;
    opacity: 0.6;
    filter: blur(4px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

/* Highlight section - extreme edges */
.bean-7 {
    top: 15%;
    left: 2%;
    width: 130px;
    animation-duration: 7.5s;
    opacity: 0.85;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.bean-8 {
    bottom: 20%;
    right: 1%;
    width: 110px;
    animation-duration: 6s;
    opacity: 0.7;
    filter: blur(3px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

/* Testimonials section */
.bean-9 {
    top: 10%;
    right: 4%;
    width: 150px;
    animation-duration: 8s;
    opacity: 0.75;
    filter: blur(1px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.bean-10 {
    bottom: 5%;
    left: -2%;
    width: 85px;
    animation-duration: 5s;
    opacity: 0.6;
    filter: blur(5px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

/* Gallery section */
.bean-11 {
    top: 25%;
    left: 5%;
    width: 100px;
    animation-duration: 6.5s;
    opacity: 0.8;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.bean-12 {
    bottom: 15%;
    right: 3%;
    width: 140px;
    animation-duration: 7s;
    animation-delay: -3s;
    opacity: 0.7;
    filter: blur(3px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.bean-13 {
    top: 15%;
    left: -2%;
    width: 110px;
    opacity: 0.6;
    filter: blur(4px);
}

.bean-14 {
    bottom: 10%;
    right: 5%;
    width: 90px;
    opacity: 0.7;
    filter: blur(2px);
}

/* Reveal Animations */
.reveal-up,
.reveal-down,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-down {
    transform: translateY(-50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

/* Music Control Button */
.music-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.music-toggle:hover {
    background: rgba(20, 20, 20, 0.9);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.music-toggle svg {
    transition: all 0.3s ease;
}

.music-toggle.playing svg {
    color: var(--color-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .headline {
        font-size: 3.5rem;
    }

    .hero-container,
    .connection-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-grid-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .highlight-left {
        max-width: 600px;
        margin: 0 auto;
    }

    .highlight-left h2 {
        text-align: center !important;
    }

    .highlight-left p {
        text-align: center !important;
    }

    .highlight-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .highlight-benefits-vertical li {
        align-items: center;
        text-align: left;
    }


    .hero-actions {
        align-items: center;
        margin: 0 auto;
    }

    .hero {
        text-align: center;
        padding-top: 120px;
    }

    .hero::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand p {
        margin: 20px auto;
    }

    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }

    .hide-on-mobile {
        display: none !important;

    }

    nav {
        display: none;
    }

    /* Simplified mobile view */
    .headline {
        font-size: 2.8rem;
    }

    .sub-headline {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 480px) {

    .phone-mockup {
        width: 280px;
        height: 570px;
    }

    .highlight-mockup::before {
        width: 250px;
        height: 250px;
    }
}

/* Selection Section */
.selection-section {
    padding: 100px 0;
    background: var(--color-black);
    position: relative;
    z-index: 10;
}

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.selection-card {
    background: var(--color-dark-gray);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.selection-card.tradicional:hover {
    border-color: var(--color-flamengo-red);
    box-shadow: 0 20px 40px rgba(195, 40, 30, 0.2);
}

.selection-card.gourmet:hover {
    border-color: var(--color-gourmet-gold);
    box-shadow: 0 20px 40px rgba(239, 213, 125, 0.2);
}

.selection-card .product-preview {
    width: 200px;
    height: 300px;
    margin-bottom: 30px;
}

.selection-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.selection-card p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    max-width: 300px;
}

/* Gourmet Details Section */
.gourmet-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, #1a1a1a 100%);
    position: relative;
}

.gourmet-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.gourmet-visual {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    aspect-ratio: 1 / 1;
    /* Force 1:1 Aspect Ratio */
}

.gourmet-visual::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(239, 213, 125, 0.15) 0%, transparent 70%);
    z-index: 1;
    /* Glow on top of image edges for better integration */
    pointer-events: none;
    animation: pulse 4s infinite alternate;
}

.gourmet-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the square container */
    display: block;
    transition: var(--transition-bounce);
}

.gourmet-visual:hover img {
    transform: scale(1.1);
}

.gourmet-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--color-gourmet-gold);
    line-height: 1.1;
}

.gourmet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.g-feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.g-feature-item .icon {
    font-size: 1.5rem;
    color: var(--color-gourmet-gold);
}

.g-feature-item h4 {
    color: #fff;
    font-size: 1.1rem;
}

.g-feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Comparison Table 100% Refined */
.comparison-section {
    padding: 140px 0;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(195, 40, 30, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.comparison-wrapper {
    margin-top: 50px;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 40px;
    padding: 60px 140px;
    /* Increased side padding for safe framing */
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    position: relative;
    z-index: 1;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    overflow: visible !important;
    /* Critical to allow floating images to hang outside */
}

.comp-floating-img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 220px;
    z-index: 10;
    pointer-events: none;
}

.trad-float {
    left: -140px;
}

.gour-float {
    right: -140px;
}

.inner-float {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.comp-floating-img img,
.comp-floating-img .image-placeholder {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.comp-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-header .label {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    align-self: end;
}

.comp-header .product-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.comp-header .trad-title {
    color: var(--color-flamengo-red);
}

.comp-header .gour-title {
    color: var(--color-gourmet-gold);
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 30px;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
    transition: var(--transition-smooth);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-feature-label {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.comp-value {
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Indicators */
.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.trad-ind {
    background-color: var(--color-flamengo-red);
    box-shadow: 0 0 10px var(--color-flamengo-red);
}

.gour-ind {
    background-color: var(--color-gourmet-gold);
    box-shadow: 0 0 10px var(--color-gourmet-gold);
}

.intensity-bar {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.intensity-fill {
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .comparison-wrapper {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {

    .comp-header,
    .comp-row {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .comp-header .label,
    .comp-feature-label {
        margin-bottom: 10px;
    }

    .comp-header .product-title {
        font-size: 1.4rem;
    }

    .comp-row {
        padding: 40px 0;
    }

    .comp-floating-img {
        display: none;
    }
}

/* Presença Nacional / Mix Section Styles */
.mix-section {
    padding: 140px 0;
    background: var(--color-black);
    position: relative;
}

.mix-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
}

.hook-box {
    margin-bottom: 30px;
}

.hook-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hook-box h3 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
}

.retail-availability {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.retail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.retail-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: rgba(239, 213, 125, 0.3);
}

.retail-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.gondola-effect {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}

.gondola-effect img {
    width: 100%;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
}

.gondola-effect:hover img {
    transform: scale(1.08);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.mix-stats {
    display: flex;
    gap: 50px;
}

@media (max-width: 992px) {
    .mix-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hook-box h3 {
        font-size: 2.2rem;
    }

    .mix-stats {
        justify-content: center;
        text-align: center;
    }
}

/* Identity Masonry Section */
.identity-section {
    padding: 100px 0;
    background: var(--color-black);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.identity-masonry {
    column-count: 3;
    column-gap: 20px;
    margin-top: 50px;
}

.identity-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.identity-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.identity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.identity-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .identity-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .identity-masonry {
        column-count: 1;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: zoom-out;
    backdrop-filter: blur(10px);
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Activation Campaigns Section */
.activation-section {
    padding: 100px 0;
    background: var(--color-black);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.activation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.activation-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    background: var(--color-dark-gray);
}

.activation-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.activation-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-flamengo-red);
    box-shadow: 0 20px 40px rgba(195, 40, 30, 0.2);
}

.activation-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .activation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .activation-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Mobile Fine-Tuning */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .selection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .selection-card {
        padding: 30px 20px;
    }

    .gourmet-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gourmet-content {
        text-align: center;
    }

    .gourmet-content h2 {
        font-size: 2.5rem;
    }

    .gourmet-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .comparison-wrapper {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .mix-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .identity-section,
    .activation-section {
        padding: 60px 0;
    }

    .identity-masonry {
        column-gap: 15px;
    }

    .identity-item {
        margin-bottom: 15px;
    }

    .hero {
        padding-top: 50px !important;
    }

    .activation-grid {
        gap: 20px;
    }

    /* Adjust Hero for small mobile */
    .headline {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .sub-headline {
        display: none !important;
    }
}

/* --- Mobile Optimizations (Consolidated) --- */
@media (max-width: 768px) {

    /* Navbar Centering */
    .navbar .container {
        justify-content: center !important;
    }

    .navbar nav {
        display: none !important;
    }

    /* Hero Layout */
    .hero {
        padding-top: 100px !important;
        align-items: flex-start !important;
        /* Push container to the top */
    }

    .hero-container.hero-centralized {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        min-height: calc(100vh - 100px) !important;
        /* Full height minus header */
        gap: 0 !important;
    }

    .hero-content {
        order: 1 !important;
        margin-bottom: 20px !important;
        z-index: 10 !important;
    }

    .sub-headline {
        display: none !important;
    }

    /* Hero Hands - Enlarged 25% and Lowered 40px */
    .hero-hands-mobile-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: flex-end !important;
        width: 100% !important;
        margin-top: auto !important;
        /* Push hands to the bottom of the screen */
        position: relative !important;
        order: 2 !important;
        /* Ensure it stays below text */
        z-index: 5 !important;
        height: 280px !important;
        /* Slightly increased height */
        padding-bottom: 20px !important;
    }

    .hero-hands-mobile-row .hero-hand {
        position: relative !important;
        width: 275px !important;
        /* Enlarged (25% increase) */
        max-width: 55% !important;
        margin: 0 -180px !important;
        /* Increased overlap to ensure they touch/overlap */
        bottom: -120px !important;
        /* Lowered by an additional 30px */
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-hands-mobile-row .hero-hand img {
        width: 100% !important;
        height: auto !important;
        filter: none !important;
        /* Removing shadow for a cleaner overlap on mobile */
        mask-image: none !important;
        /* Removing mask to avoid cutouts at the bottom */
        -webkit-mask-image: none !important;
    }

    /* Typography Reductions */
    .headline {
        font-size: 2.8rem !important;
    }

    .section-header h2 {
        font-size: 2.2rem !important;
    }

    .connection-content h2 {
        font-size: 2.2rem !important;
    }

    .gourmet-content h2 {
        font-size: 2.3rem !important;
    }

    .cta-content-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .cta-overlay {
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(195, 40, 30, 0.9) 100%) !important;
    }

    .cta-text-side {
        text-align: center !important;
        max-width: 100% !important;
    }

    .cta-text-side h2 {
        font-size: 2.5rem !important;
    }

    .cta-text-side p {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }

    .cta-image-side {
        justify-content: center !important;
        order: 2;
    }

    .cta-players-img {
        max-width: 100% !important;
        margin-right: 0 !important;
    }

    .highlight-left h2 {
        font-size: 2.2rem !important;
    }

    /* Other Mobile Centering */
    .gourmet-content,
    .gourmet-features,
    .g-feature-item,
    .section-header {
        text-align: center !important;
        align-items: center !important;
    }

    .gourmet-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        width: 100% !important;
        margin-top: 30px !important;
    }

    .g-feature-item {
        background: rgba(255, 255, 255, 0.03) !important;
        padding: 25px 15px !important;
        border-radius: 24px !important;
        border: 1px solid rgba(239, 213, 125, 0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        transition: transform 0.3s ease !important;
    }

    .g-feature-item .icon {
        background: rgba(239, 213, 125, 0.08) !important;
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 16px !important;
        margin-bottom: 15px !important;
        color: var(--color-gourmet-gold) !important;
    }

    .g-feature-item h4 {
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        margin-bottom: 8px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .g-feature-item p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        opacity: 0.8 !important;
    }

    .btn-gourmet {
        width: 100% !important;
        max-width: 320px !important;
    }

    #comparison {
        display: none !important;
    }

    .footer-logos {
        gap: 25px;
        flex-wrap: wrap;
    }

    .footer-logo {
        height: 50px;
    }



    /* Expert Impact Mobile Centralization */
    .expert-statement-section {
        text-align: center !important;
    }

    .expert-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
    }

    .expert-main-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .expert-title {
        font-size: 2.2rem !important;
    }

    .expert-text {
        margin: 0 auto !important;
    }

    .expert-quote-content {
        padding-left: 0 !important;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-top: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .expert-signature {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-flamengo-red) 0%, var(--color-flamengo-darkred) 100%);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(195, 40, 30, 0.4);
    border: none;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(195, 40, 30, 0.6);
    color: white !important;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0;
    animation: pulse-ring 5s infinite;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    z-index: 2;
    position: relative;
}

@keyframes pulse-ring {

    0%,
    92% {
        transform: scale(1);
        opacity: 0;
    }

    95% {
        transform: scale(1.4);
        opacity: 0.6;
    }

    98%,
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Footer Logos Styling */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-campeao {
    height: 50px;
}

.footer-logo:hover {
    transform: scale(1.1);
}


