/* Globals */
:root {
    --primary-red: #C3281E;
    --text-dark: #111111;
    --text-light: #ffffff;
    --bg-dark: #141414;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll suave na navegação da página */
html {
    scroll-behavior: smooth;
}

body, html {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff; 
    width: 100%;
    height: 100%;
}

.red { color: var(--primary-red); }
.black { color: var(--text-dark); }
.white { color: var(--text-light); }
.red-bold { color: var(--primary-red); font-weight: 700; }
.text-muted { color: #777; }

/* Layout Wrapper */
.main-wrapper { position: relative; width: 100%; min-height: 100vh; display: flex; flex-direction: column; }

/* Background MOBILE (Hero) */
.bg-image-mobile { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('assets/bg3.jpeg') no-repeat top center; background-size: cover; z-index: 1; }
.bg-image-mobile::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(255,255,255,0.7) 120%, rgba(255,255,255,0.95) 60%, rgba(255,255,255,1) 100vh); }

/* Backgrounds - SOMENTE DESKTOP (Hero) */
.bg-image { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('assets/bg6.jpeg') no-repeat bottom; background-size: cover; z-index: 1; }
.bg-gradient { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #ffffff 0%, #ffffff 45%, rgba(255,255,255,0.85) 55%, rgba(255,255,255,0) 100%); z-index: 2; }

/* Header - ESTADO NORMAL NO TOPO */
.header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 3vh 5%; 
    background-color: transparent; 
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); 
}

/* Header - ESTADO COM SCROLL (Classe adicionada via JS) */
.header.scrolled {
    padding: 1.5vh 5%;
    background-color: rgba(255, 255, 255, 0.85); /* Pequena transparência */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Sombra elegante */
}

.logo-group { display: flex; align-items: center; gap: 6px; }
.logo-emblema { height: 48px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-text .black { font-family: var(--font-heading); font-size: 1rem; line-height: 1; letter-spacing: 0.5px; }
.logo-text .red { font-family: var(--font-body); font-size: 0.45rem; font-weight: 700; line-height: 1; letter-spacing: 0.5px; margin-top: -18px; }
.logo-divider { display: block; width: 1px; height: 22px; background-color: #ddd; margin: 0 4px; }
.powered-by { display: flex; align-items: center; gap: 4px; }
.powered-text { font-size: 0.4rem; font-weight: 600; letter-spacing: 0.5px; color: #666; }
.logo-samba { height: 15px; object-fit: contain; }

/* Desktop Nav */
.desktop-nav { display: none; gap: 2.5vw; }
.desktop-nav a { text-decoration: none; color: var(--text-dark); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; transition: color 0.3s; }
.desktop-nav a:hover { color: var(--primary-red); }
.header-actions { display: flex; align-items: center; gap: 1.5vw; }
.btn-outline-whatsapp { display: none; text-decoration: none; color: var(--text-dark); border: 1px solid var(--primary-red); background: transparent; padding: 0.9vh 1.5vw; border-radius: 50px; font-size: 0.75rem; font-weight: 600; align-items: center; gap: 8px; transition: 0.3s; }
.btn-outline-whatsapp i { color: var(--primary-red); font-size: 1.1rem; }
.btn-outline-whatsapp:hover { background: var(--primary-red); color: var(--text-light); }
.btn-outline-whatsapp:hover i { color: var(--text-light); }
.btn-menu { background: #0a0a0a; color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: transform 0.2s; }
.btn-menu:hover { transform: scale(1.05); }

/* MENU MOBILE OCULTO */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); z-index: 9999; display: flex; justify-content: flex-end; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu-content { width: 75%; max-width: 320px; height: 100%; background: #ffffff; padding: 30px 25px; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: -5px 0 25px rgba(0,0,0,0.1); }
.mobile-menu-overlay.active .mobile-menu-content { transform: translateX(0); }
.btn-close-menu { align-self: flex-end; background: transparent; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-dark); margin-bottom: 30px; }
.mobile-nav { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.mobile-nav a { text-decoration: none; color: var(--text-dark); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; border-bottom: 1px solid #eaeaea; padding-bottom: 15px; }
.mobile-whatsapp { display: flex; justify-content: center; margin-top: auto; padding: 1.5vh 2vw; }

/* Main Content Grid */
.content-grid { position: relative; z-index: 10; flex: 1; display: flex; flex-direction: column; padding: 12vh 5% 5vh; gap: 3vh; }
.left-column { display: flex; flex-direction: column; }
.subtitle { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #444; margin-bottom: 1.5vh; }
h1 { font-family: var(--font-heading); font-size: clamp(3.8rem, 15vw, 6.5rem); line-height: 0.85; letter-spacing: 1px; margin-bottom: 1.5vh; }
.description { font-size: 0.85rem; line-height: 1.5; color: #333; margin-bottom: 3.5vh; max-width: 90%; }
.cta-group { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 4vh; width: 100%; }
.btn-primary, .btn-secondary { width: 100%; display: flex; align-items: center; justify-content: center; padding: 1.5vh 20px; border-radius: 50px; font-weight: 600; font-size: 0.8rem; text-decoration: none; transition: 0.3s; }
.btn-primary { background: #111; color: #fff; gap: 10px; }
.btn-primary:hover { background: #333; }
.btn-primary i { font-size: 1.1rem; }
.btn-secondary { background: transparent; border: 1px solid #ccc; color: var(--text-dark); }
.btn-secondary:hover { background: #f5f5f5; border-color: #aaa; }
.features { display: none; flex-wrap: wrap; gap: 15px; border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; padding: 2.5vh 0; margin-bottom: 3vh; }
.feature-item { display: flex; align-items: center; gap: 8px; }
.icon-red { color: var(--primary-red); font-size: 1.5rem; }
.feature-text { font-size: 0.65rem; line-height: 1.3; color: #555; }
.feature-text strong { color: var(--text-dark); }
.trust-badges { display: flex; flex-direction: column; gap: 15px; }
.badge { display: flex; align-items: center; gap: 12px; }
.badge-icon-big { font-size: 1.8rem; color: var(--text-dark); }
.badge-text { font-size: 0.6rem; line-height: 1.3; color: #555; }
.badge-text strong { font-size: 0.65rem; color: var(--text-dark); }
.badge-divider { width: 100%; height: 1px; background: #eaeaea; }
.avatars { display: flex; }
.avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; object-fit: cover; }
.avatar:first-child { margin-left: 0; }

/* Right Column - CAROUSEL */
.right-column { width: 100%; }
.carousel-container { background: #ffffff; border-radius: 12px; padding: 20px 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.carousel-header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding: 0 10px; }
.carousel-header-flex h3 { font-size: 0.9rem; font-weight: 800; letter-spacing: 0.5px; color: var(--text-dark); margin: 0; }
.btn-ver-todos { display: none; align-items: center; gap: 8px; font-size: 0.65rem; font-weight: 700; color: var(--text-dark); text-decoration: none; border: 1px solid #eaeaea; padding: 8px 16px; border-radius: 50px; transition: 0.3s; }
.btn-ver-todos:hover { background: #f5f5f5; border-color: #ddd; }
.carousel-wrapper { position: relative; display: flex; align-items: center; }
.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #ffffff; border: 1px solid #eaeaea; color: var(--text-dark); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; z-index: 20; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.nav-btn i { font-size: 0.9rem; }
.nav-btn:hover { background: #f9f9f9; color: var(--primary-red); }
.btn-left { left: 0px; } .btn-right { right: 0px; }
.carousel-track-wrapper { overflow: hidden; width: 100%; padding: 10px 0; }
.carousel-track { display: flex; gap: 15px; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.game-card { flex: 0 0 100%; background: #ffffff; border: 1px solid #eaeaea; border-radius: 12px; padding: 15px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.3s ease; }
.card-date { margin-bottom: 15px; line-height: 1.2; }
.card-date strong { font-size: 0.75rem; color: #111; font-weight: 700; }
.card-date span { font-size: 0.65rem; color: #888; font-weight: 500; }
.teams { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 15px; padding: 0 5px; }
.team-logo { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.team-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.match-info { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.team-name { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.5px; color: var(--text-dark); }
.vs { color: var(--primary-red); font-size: 0.7rem; font-weight: 800; }
.card-divider { width: 100%; height: 1px; background: #eaeaea; margin-bottom: 12px; }
.card-features-mini { display: flex; justify-content: space-between; width: 100%; }
.feat-mini { display: flex; align-items: center; gap: 4px; text-align: left; }
.feat-mini i { font-size: 1rem; color: #555; }
.feat-mini span { font-size: 0.45rem; line-height: 1.1; color: #555; font-weight: 600; }
.carousel-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 15px; flex-wrap: wrap; }
.dot { width: 6px; height: 6px; background: #ccc; border-radius: 50%; transition: 0.3s; cursor: pointer; }
.dot.active { background: var(--primary-red); }

/* Scroll Indicator */
.scroll-indicator { display: none; position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%); align-items: center; gap: 8px; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.5px; z-index: 10; }
.mouse-icon { width: 16px; height: 26px; border: 1.5px solid var(--text-dark); border-radius: 10px; position: relative; }
.mouse-icon::before { content: ''; position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 2px; height: 5px; background: var(--text-dark); border-radius: 2px; }

/* Animations */
.fade-in { opacity: 0; animation: fadeIn 0.8s ease forwards; animation-delay: var(--delay, 0s); }
.fade-in-up { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: var(--delay, 0s); }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* Hero Desktop */
@media (min-width: 1024px) {
    .bg-image, .bg-gradient { display: block; }
    .bg-image-mobile { display: none; }
    .btn-menu { display: none !important; }
    .desktop-nav { display: flex; }
    .btn-outline-whatsapp { display: flex; }
    .features { display: flex; }
    .btn-ver-todos { display: flex; }
    .scroll-indicator { display: flex; }
    .logo-group { gap: 12px; }
    .logo-emblema { height: 48px; }
    .logo-text .black { font-size: 1.5rem; }
    .logo-text .red { font-size: 0.65rem; letter-spacing: 2px; margin-top: -18px; }
    .logo-divider { display: block; height: 35px; margin: 0 10px; }
    .powered-by { display: flex; gap: 8px; }
    .powered-text { font-size: 0.55rem; }
    .logo-samba { height: 18px; }
    .cta-group { flex-direction: row; width: auto; }
    .btn-primary, .btn-secondary { width: auto; padding: 1.5vh 2vw; }
    .content-grid { flex-direction: row; align-items: center; justify-content: space-between; padding: 14vh 5% 0; margin-top: 0; }
    .left-column { width: 50%; max-width: 700px; }
    .subtitle { font-size: 0.85rem; letter-spacing: 3px; }
    h1 { font-size: clamp(6rem, 8vw, 8.5rem); }
    .features { flex-direction: row; justify-content: space-between; gap: 10px; padding: 2.2vh 0; }
    .trust-badges { flex-direction: row; align-items: center; gap: 3vw; }
    .badge-divider { width: 1px; height: 40px; }
    .badge-icon-big { font-size: 2.2rem; }
    .right-column { width: 48%; align-self: flex-end; margin-bottom: 8vh; transform: scale(0.85); transform-origin: bottom right; }
    .carousel-container { padding: 35px 45px; }
    .nav-btn { width: 44px; height: 44px; }
    .nav-btn i { font-size: 1.2rem; }
    .btn-left { left: -22px; } .btn-right { right: -22px; }
    .game-card { flex: 0 0 calc(33.333% - 10px); padding: 20px 15px 15px 15px; }
    .team-logo { width: 45px; height: 45px; }
    .feat-mini i { font-size: 1.1rem; }
    .feat-mini span { font-size: 0.5rem; }
}

/* Divisória de Experiência */
.experience-divider { position: relative; width: 100%; height: 140px; background: #000000; overflow: hidden; display: flex; align-items: center; justify-content: center; border-top: 2px solid #111; border-bottom: 2px solid #111; z-index: 10;}
.skewed-container { position: absolute; top: 0; left: -5%; width: 110%; height: 100%; display: flex; gap: 4px; }
.skewed-box { flex: 1; height: 100%; transform: skewX(-20deg); overflow: hidden; background: #0a0a0a; position: relative; }
.skewed-box img { width: 150%; height: 100%; object-fit: cover; transform: skewX(20deg) translateX(-15%); filter: grayscale(60%) brightness(0.5); transition: 0.5s ease; }
.skewed-box:hover img { filter: grayscale(0%) brightness(0.8); transform: skewX(20deg) translateX(-15%) scale(1.05); }
.divider-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.8) 100%); pointer-events: none; z-index: 2; }
.btn-experience { pointer-events: auto; position: relative; z-index: 3; display: inline-flex; align-items: center; gap: 15px; padding: 8px 10px 8px 25px; background: rgba(10, 10, 10, 0.7); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50px; color: #fff; text-decoration: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; backdrop-filter: blur(5px); transition: all 0.3s ease; }
.btn-experience:hover { background: rgba(255, 255, 255, 0.1); border-color: #ff3737; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }
.btn-experience .icon-circle { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid #fff; border-radius: 50%; font-size: 1rem; transition: 0.3s; }
.btn-experience:hover .icon-circle { background: #fff; color: #000; }
@media (max-width: 768px) {
    .experience-divider { height: 100px; }
    .btn-experience { font-size: 0.65rem; padding: 6px 8px 6px 18px; }
    .btn-experience .icon-circle { width: 26px; height: 26px; font-size: 0.8rem; }
    .skewed-box:nth-child(4), .skewed-box:nth-child(5) { display: none; }
}

/* =========================================================
   SEÇÃO: PRÓXIMOS JOGOS
   ========================================================= */
.section-jogos { position: relative; width: 100%; min-height: 100vh; display: flex; flex-direction: column; background-color: #ffffff; overflow: hidden; }
.jogos-bg-mobile { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('assets/bg-mobile.jpeg') no-repeat top center; background-size: cover; z-index: 1; }
.jogos-bg-desktop { display: none; position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: url('assets/bgjogos.jpeg') no-repeat right center; background-size: cover; z-index: 1; }
.jogos-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.98) 50%, #ffffff 100%); z-index: 2; }
.jogos-watermark { position: absolute; top: -10%; left: -5%; width: 70%; height: 120%; background: url('https://upload.wikimedia.org/wikipedia/commons/2/2e/Flamengo_braz_logo.svg') no-repeat center; background-size: contain; opacity: 0.04; z-index: 3; pointer-events: none; }
.circle-decorative { display: none; position: absolute; top: 5%; right: 5%; width: 150px; height: 150px; z-index: 10; align-items: center; justify-content: center; }
.rotating-text { width: 100%; height: 100%; animation: rotate 15s linear infinite; position: absolute; top: 0; left: 0; }
.rotating-text text { font-family: var(--font-heading); font-size: 16px; letter-spacing: 2.5px; fill: #111; }
.circle-inner-btn { position: absolute; width: 55px; height: 55px; background: var(--text-dark); color: rgb(4, 4, 4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 2; cursor: pointer; transition: 0.3s; }
.circle-inner-btn:hover { transform: scale(1.12); background: #c4c4c4; }
@keyframes rotate { 100% { transform: rotate(360deg); } }

.jogos-content { position: relative; z-index: 10; padding: 6vh 5%; flex: 1; display: flex; flex-direction: column; }
.jogos-header-area { margin-bottom: 30px; }
.jogos-tagline { font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.jogos-tagline .red-text { color: var(--primary-red); }
.jogos-tagline .slashes { color: #ccc; letter-spacing: 2px; }
.jogos-tagline .dot-red { width: 6px; height: 6px; background: var(--primary-red); border-radius: 50%; }
.jogos-main-title { font-family: var(--font-heading); font-size: clamp(3.5rem, 10vw, 7.5rem); line-height: 0.85; letter-spacing: 1px; margin-bottom: 20px; font-style: italic; }
.jogos-desc { font-size: 1rem; color: #333; line-height: 1.5; margin-bottom: 30px; max-width: 450px; }
.vagas-limitadas { display: inline-flex; align-items: center; gap: 15px; }
.icon-circle-black { width: 46px; height: 46px; border-radius: 50%; background: #111; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.vagas-text strong { font-size: 0.85rem; color: #111; font-weight: 800; }
.vagas-text span { font-size: 0.75rem; color: #666; }

.jogos-carousel-area { position: relative; width: 100%; margin-bottom: 40px; display: flex; flex-direction: column; }
.jogos-track-container { width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 15px 0 30px 0; }
.jogos-track-container::-webkit-scrollbar { display: none; }
.jogos-track { display: flex; gap: 15px; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.section-jogos .jogo-card { scroll-snap-align: start; flex: 0 0 calc(50% - 7.5px); background: #ffffff; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.06); display: flex; flex-direction: column; position: relative; border: 1px solid #f0f0f0; transition: transform 0.3s ease; }
.section-jogos .jogo-card:hover { transform: translateY(-5px); }
.jogo-badge { position: absolute; top: -12px; left: 15px; background: var(--primary-red); color: #fff; font-size: 0.55rem; font-weight: 800; padding: 6px 12px; border-radius: 8px; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(204,0,0,0.3); }
.jogo-tourney { text-align: center; font-size: 0.6rem; font-weight: 700; color: #666; margin-top: 25px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.jogo-date { text-align: center; font-size: 1.1rem; font-weight: 800; color: #111; margin: 5px 0 15px; }
.red-dot-divider { color: var(--primary-red); margin: 0 4px; }
.jogo-card-divider { width: 30px; height: 2px; background: #e0e0e0; margin: 0 auto 20px; }
.jogo-teams { display: flex; justify-content: space-between; align-items: center; padding: 0 10px; margin-bottom: 20px; }
.jogo-team { display: flex; flex-direction: column; align-items: center; width: 42%; gap: 8px; }
.jogo-team img { width: 35px; height: 35px; object-fit: contain; }
.jogo-team span { font-size: 0.65rem; font-weight: 800; color: #111; text-align: center; }
.jogo-vs { font-size: 1.2rem; color: #ddd; font-weight: 300; }
.jogo-location { text-align: center; color: #111; font-size: 0.6rem; font-weight: 700; margin-bottom: 25px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.jogo-location .red { font-size: 0.8rem; }
.jogo-card-bottom { display: flex; height: 65px; width: 100%; border-radius: 0 0 12px 12px; overflow: hidden; }
.card-bottom-left { flex: 1; background: #111; color: #fff; padding: 10px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.card-bottom-left .small-text { font-size: 0.45rem; color: #888; font-weight: 600; line-height: 1.3; }
.card-bottom-left strong { font-size: 0.9rem; font-weight: 800; }
.card-bottom-right { width: 60px; background: var(--primary-red); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-decoration: none; transition: background 0.3s; }
.card-bottom-right:hover { background: #a00000; }
.card-bottom-right span { font-size: 0.55rem; font-weight: 800; line-height: 1; text-align: center; }
.card-bottom-right i { font-size: 1rem; }
.nav-btn-dark { display: none; }
.jogos-help-banner { background: #ffffff; border-radius: 12px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; gap: 20px; border: 1px solid #eaeaea; margin-top: 0; align-self: center; }
.help-left { display: flex; align-items: center; gap: 15px; }
.icon-circle-outline { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #111; color: #111; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.help-text strong { font-size: 0.9rem; color: #111; }
.help-text span { font-size: 0.8rem; color: #666; }
.btn-solid-red { background: var(--primary-red); color: #fff; padding: 15px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.3s; width: 100%; }
.btn-solid-red:hover { background: #a00000; }

/* --- INDICADOR DE SCROLL MOBILE --- */
.swipe-indicator-mobile { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.75rem; color: var(--primary-red); font-weight: 700; margin-bottom: 5px; width: 100%; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8; }
@media (min-width: 1024px) { .swipe-indicator-mobile { display: none; } }

@media (min-width: 1024px) {
    .section-jogos { height: 100vh; max-height: 100vh; justify-content: center; }
    .jogos-bg-mobile { display: none; }
    .jogos-bg-desktop { display: block; }
    .jogos-gradient { background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, rgba(255,255,255,0) 100%); }
    .circle-decorative { display: flex; }
    .jogos-content { padding: 4vh 5%; justify-content: center; }
    .jogos-header-area { margin-bottom: 3vh; }
    .jogos-tagline { font-size: 0.85rem; }
    .jogos-main-title { font-size: clamp(4rem, 8vw, 7.5rem); margin-bottom: 1.5vh;}
    .jogos-desc { margin-bottom: 2vh; }
    .jogos-carousel-area { margin-bottom: 3vh; display: flex; flex-direction: row; align-items: center; }
    .jogos-track-container { overflow: hidden; display: flex; padding: 15px 0 20px 0; }
    .nav-btn-dark { display: flex; position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: #111; color: #fff; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; border: none; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: 0.3s; z-index: 10; }
    .btn-left-jogos { left: -25px; } .btn-right-jogos { right: -25px; }
    .nav-btn-dark:hover { background: var(--primary-red); transform: translateY(-50%) scale(1.1); }
    .section-jogos .jogo-card { flex: 0 0 280px; margin-right: 0; }
    .jogo-tourney { font-size: 0.65rem; }
    .jogo-date { font-size: 1.25rem; }
    .jogo-teams { padding: 0 20px; }
    .jogo-team img { width: 50px; height: 50px; }
    .jogo-team span { font-size: 0.75rem; }
    .card-bottom-left .small-text { font-size: 0.5rem; }
    .card-bottom-left strong { font-size: 1.1rem; }
    .card-bottom-right { width: 80px; }
    .card-bottom-right span { font-size: 0.65rem; }
    .jogos-help-banner { flex-direction: row; justify-content: space-between; align-items: center; padding: 20px 40px; margin-top: 0; width: 100%; max-width: 1000px; }
    .btn-solid-red { width: auto; padding: 15px 40px; }
}

/* =========================================================
   SEÇÃO: PACOTES
   ========================================================= */
.pe-section { width: 100%; position: relative; z-index: 10; display: flex; flex-direction: column; background-color: #fcfcfc; }
.pe-container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 6vh 5%; display: flex; flex-direction: column; gap: 40px; }
.pe-pacotes-area { background-color: #fcfcfc; width: 100%; }
.pe-tagline { font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; color: #111; display: block; margin-bottom: 12px; text-transform: uppercase; }
.pe-title { font-family: var(--font-heading); font-size: clamp(3.2rem, 6vw, 4.5rem); line-height: 0.85; letter-spacing: 1px; color: #111; margin-bottom: 15px; }
.pe-desc { font-size: 0.95rem; color: #555; line-height: 1.5; margin-bottom: 25px; max-width: 400px; }
.pe-trust-badge { display: flex; align-items: center; gap: 12px; padding: 12px 15px; background: #fff; border-radius: 12px; border: 1px solid #eaeaea; box-shadow: 0 4px 15px rgba(0,0,0,0.02); max-width: 260px; margin-bottom: 20px; }
.pe-trust-icon { width: 36px; height: 36px; border-radius: 50%; background: #fdf0f0; color: var(--primary-red); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.pe-trust-text { display: flex; flex-direction: column; }
.pe-trust-text strong { font-size: 0.75rem; color: #111; }
.pe-trust-text span { font-size: 0.65rem; color: #777; }
.pe-pacotes-right { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.pe-card { background: #ffffff; border-radius: 20px; padding: 40px 30px; display: flex; flex-direction: column; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pe-card-highlight { border: 1px solid #f0f0f0; box-shadow: 0 12px 45px rgba(0,0,0,0.06); }
.pe-card-normal { border: 1px solid #eaeaea; box-shadow: 0 8px 25px rgba(0,0,0,0.03); }
.pe-badge-top { position: absolute; top: -12px; left: 25px; background: var(--primary-red); color: #fff; font-size: 0.55rem; font-weight: 800; padding: 6px 14px; border-radius: 6px; letter-spacing: 0.5px; }
.pe-card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.pe-card-icon-circle { width: 55px; height: 55px; border-radius: 50%; background: #111; color: var(--primary-red); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.pe-card-titles h3 { font-size: 1.25rem; font-weight: 800; color: #111; margin-bottom: 4px; }
.pe-card-titles p { font-size: 0.75rem; color: #666; }
.pe-features-list { list-style: none; margin-bottom: 35px; flex-grow: 1; }
.pe-features-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #333; margin-bottom: 12px; font-weight: 500; }
.pe-features-list li .red-icon { font-size: 1.2rem; color: var(--primary-red); font-weight: bold; }
.pe-card-footer { margin-top: auto; }
.pe-btn-solid, .pe-btn-outline { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-decoration: none; transition: 0.3s; }
.pe-btn-solid { background: var(--primary-red); color: #fff; border: 1px solid var(--primary-red); }
.pe-btn-solid:hover { background: #a00000; border-color: #a00000; }
.pe-btn-outline { background: #fff; color: var(--primary-red); border: 1px solid var(--primary-red); }
.pe-btn-outline:hover { background: #fdf5f5; }

.pe-depoimentos-area { background: #0a0a0a; position: relative; overflow: hidden; width: 100%; }
.pe-bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('assets/bg6.jpeg') no-repeat center; background-size: cover; opacity: 0.05; filter: grayscale(100%); pointer-events: none; }
.pe-depo-flex { flex-direction: column; gap: 30px; position: relative; z-index: 2; padding: 6vh 5%;}
.pe-tagline-dark { font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; color: #fff; display: block; margin-bottom: 10px; text-transform: uppercase;}
.pe-title-dark { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 4.5rem); line-height: 0.85; color: #fff; margin-bottom: 15px;}
.pe-stars { color: var(--primary-red); font-size: 1rem; display: flex; gap: 3px; margin-bottom: 15px; }
.pe-desc-dark { font-size: 0.85rem; color: #aaa; line-height: 1.5; margin-bottom: 25px; }
.pe-btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border: 1px solid #333; border-radius: 50px; color: #fff; font-size: 0.7rem; font-weight: 700; text-decoration: none; transition: 0.3s; }
.pe-btn-outline-dark:hover { background: #1a1a1a; border-color: #555; }

.pe-depo-right { width: 100%; position: relative; }
.pe-carousel-wrapper { position: relative; display: flex; align-items: center; width: 100%; }
.pe-carousel-track-container { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; width: 100%; padding: 10px 0; scroll-behavior: smooth; }
.pe-carousel-track-container::-webkit-scrollbar { display: none; }
.pe-carousel-track { display: flex; gap: 20px; transition: transform 0.5s ease; }
.pe-depo-card.glass-effect { scroll-snap-align: start; flex: 0 0 85%; background: rgba(25, 25, 25, 0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 30px; display: flex; flex-direction: column; box-shadow: 0 15px 35px rgba(0,0,0,0.6); position: relative; }
.pe-quote-mark { font-family: var(--font-heading); font-size: 4rem; color: var(--primary-red); line-height: 0; position: absolute; top: 40px; left: 30px; opacity: 0.8; }
.pe-depo-text { font-size: 0.9rem; color: #ddd; line-height: 1.6; margin: 30px 0; font-style: italic; z-index: 2; position: relative; }
.pe-depo-author { display: flex; align-items: center; gap: 15px; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;}
.pe-depo-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.pe-author-info { display: flex; flex-direction: column; flex-grow: 1; }
.pe-author-info strong { font-size: 0.85rem; color: #fff; }
.pe-author-info span { font-size: 0.7rem; color: #888; }
.pe-fla-crest { width: 22px !important; height: 26px !important; border-radius: 0 !important; opacity: 0.6;}
.pe-nav-btn { display: none; }
.pe-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pe-dot { width: 6px; height: 6px; background: #333; border-radius: 50%; transition: 0.3s; }
.pe-dot.active { background: var(--primary-red); }

@media (min-width: 1024px) {
    .pe-section { height: 100vh; max-height: 100vh; overflow: hidden; }
    .pe-pacotes-area { flex: 0 0 55%; display: flex; align-items: center; }
    .pe-depoimentos-area { flex: 0 0 45%; display: flex; align-items: center; }
    .pe-container, .pe-depo-flex { padding: 0 5%; flex-direction: row; align-items: center; justify-content: space-between; }
    .pe-pacotes-left { width: 32%; padding-right: 30px; }
    .pe-pacotes-right { width: 65%; flex-direction: row; gap: 30px; }
    .pe-card { flex: 1; }
    .pe-card:hover { transform: translateY(-5px); box-shadow: 0 15px 45px rgba(0,0,0,0.08); }
    .pe-depo-left { width: 28%; padding-right: 20px; }
    .pe-depo-right { width: 68%; }
    .pe-carousel-track-container { padding: 15px 0; }
    .pe-depo-card.glass-effect { flex: 0 0 calc(50% - 10px); }
    .pe-nav-btn { display: flex; position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #1a1a1a; color: #fff; border: 1px solid #333; justify-content: center; align-items: center; cursor: pointer; z-index: 10; transition: 0.3s; }
    .pe-nav-btn:hover { background: #333; color: var(--primary-red); }
    .pe-prev { left: -45px; } .pe-next { right: -45px; }
}

/* =========================================================
   NOVA SEÇÃO: SOBRE NÓS E BENEFÍCIOS (AGORA NO FINAL)
   ========================================================= */
.sobre-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    z-index: 10;
}

/* --- PARTE SUPERIOR (CLARA) --- */
.sobre-top {
    position: relative;
    width: 100%;
    padding: 60px 5% 70px 5%;
    overflow: hidden;
}

/* Background images (Mobile e Desktop independentes) */
.sobre-bg-mobile {
    display: block; /* Visível no Mobile */
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 100%;
    /* Substitua o caminho da imagem de celular abaixo */
    background: url('assets/bgrb.jpeg') no-repeat center right; 
    background-size: cover;
    z-index: 1;
    opacity: 1.3; /* Mais claro no celular para o texto ler fácil */
}

.sobre-bg-desktop {
    display: none; /* Oculto no Mobile */
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 100%;
    /* Imagem base do Desktop */
    background: url('assets/bgrb.jpeg') no-repeat top right; 
    background-size: cover;
    z-index: 1;
    opacity: 0.4;
}

.sobre-gradient {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.849) 0%, rgba(255,255,255,0.85) 100%);
    z-index: 2;
}

.sobre-container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.sobre-content {
    max-width: 650px;
    display: flex;
    flex-direction: column;
}

.sobre-tagline {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; color: var(--primary-red);
    margin-bottom: 20px;
}
.sobre-tagline .line {
    display: block; width: 30px; height: 2px; background-color: var(--primary-red);
}

.sobre-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.sobre-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    max-width: 500px;
}

.sobre-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex; align-items: center; gap: 12px;
}
.stat-icon-wrapper {
    color: var(--primary-red); font-size: 2.2rem;
}
.stat-text { display: flex; flex-direction: column; }
.stat-text strong { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.stat-text span { font-size: 0.6rem; font-weight: 800; color: #111; text-transform: uppercase; line-height: 1.2; margin-top: 4px;}

.stat-divider {
    display: block;
    width: 100%; height: 1px;
    background: #eaeaea;
}

/* Botão com o circulo da seta */
.btn-consultor-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: #fff; color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 10px 10px 10px 25px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 800; text-decoration: none;
    transition: 0.3s;
    width: fit-content;
}
.btn-consultor-outline:hover {
    background: #fdf5f5;
}
.btn-consultor-outline i { font-size: 1.2rem; }
.arrow-circle {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    background: var(--primary-red); color: #fff;
    border-radius: 50%; margin-left: 15px;
    transition: 0.3s;
}
.arrow-circle i { font-size: 1rem; }
.btn-consultor-outline:hover .arrow-circle { transform: translateX(3px); }

/* --- PARTE INFERIOR (ESCURA/CARDS) --- */
.sobre-bottom {
    background: #0a0a0a;
    border-radius: 40px 40px 0 0;
    margin-top: -30px; 
    position: relative;
    z-index: 5;
    padding: 60px 5%;
}

.sobre-container-bottom {
    max-width: 1300px;
    margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
}

.sobre-tagline-center {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 0.65rem; font-weight: 800; letter-spacing: 1px; color: var(--primary-red);
    margin-bottom: 15px;
}
.sobre-tagline-center .line {
    display: block; width: 25px; height: 1px; background-color: var(--primary-red);
}

.sobre-title-bottom {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800; text-align: center; margin-bottom: 50px;
}

/* Grid Cards */
.sobre-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 50px;
}

.sobre-feature-card {
    background: transparent;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    transition: 0.3s;
}
.sobre-feature-card:hover {
    border-color: #333;
    background: #111;
    transform: translateY(-5px);
}
.sf-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-red); font-size: 2.2rem;
    margin-bottom: 20px;
}
.sobre-feature-card h3 {
    font-size: 0.85rem; font-weight: 800; color: #fff; margin-bottom: 15px; line-height: 1.3;
}
.sobre-feature-card p {
    font-size: 0.75rem; color: #888; line-height: 1.5;
}

/* Footer Bottom Section */
.sobre-footer {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    text-align: center; border-top: 1px solid #222; padding-top: 25px; width: 100%;
}
.sobre-footer i { color: #fff; font-size: 1.5rem; }
.sobre-footer p { font-size: 0.7rem; font-weight: 800; }

/* Desktop Responsiveness */
@media (min-width: 1024px) {
    .sobre-top {
        padding: 100px 5% 120px 5%;
    }
    
    /* Configura o background p/ Desktop, desabilita Mobile */
    .sobre-bg-mobile { display: none; }
    .sobre-bg-desktop { display: block; opacity: 1; }
    
    .sobre-gradient {
        background: linear-gradient(90deg, #ffffff 40%, rgba(255,255,255,0.85) 55%, rgba(255,255,255,0) 100%);
    }
    
    .sobre-stats {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    .stat-divider {
        width: 1px; height: 40px; background: #eaeaea;
    }
    
    .sobre-bottom { padding: 80px 5%; margin-top: -40px;}
    .sobre-features-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
    .sobre-feature-card { padding: 30px 15px; }
    .sobre-footer p { font-size: 0.85rem; }
}




/* =========================================================
   MODAL DE CHECKOUT (WHATSAPP)
   ========================================================= */
.checkout-modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 20px; }
.checkout-modal-overlay.active { opacity: 1; pointer-events: auto; }

.checkout-modal-content { display: flex; width: 100%; max-width: 1000px; background: #ffffff; border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.5); transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.checkout-modal-overlay.active .checkout-modal-content { transform: translateY(0); }

.btn-close-checkout { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: none; font-size: 1.5rem; color: #111; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.2s; }
.btn-close-checkout:hover { background: #f0f0f0; color: var(--primary-red); transform: scale(1.05); }

/* Lado Esquerdo (Formulário) */
.checkout-left { flex: 1; padding: 45px; display: flex; flex-direction: column; }
.checkout-tagline { font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.checkout-tagline .slashes { color: var(--primary-red); }
.checkout-title { font-family: var(--font-heading); font-size: 3.5rem; line-height: 0.9; margin-bottom: 15px; font-style: italic; }
.checkout-desc { font-size: 0.85rem; color: #555; margin-bottom: 30px; line-height: 1.5; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.input-wrapper { display: flex; flex-direction: column; gap: 8px; }
.input-wrapper.full-width { margin-bottom: 20px; }
.input-wrapper label { font-size: 0.65rem; font-weight: 800; color: #111; text-transform: uppercase; letter-spacing: 0.5px; }

.input-icon-group { position: relative; display: flex; align-items: center; }
.input-icon-group i { position: absolute; left: 15px; font-size: 1.2rem; color: #777; }
.input-icon-group input, .input-icon-group select { width: 100%; padding: 14px 14px 14px 45px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 0.85rem; font-family: var(--font-body); color: #333; background: #fafafa; outline: none; transition: 0.3s; }
.input-icon-group input:focus, .input-icon-group select:focus { border-color: var(--primary-red); background: #fff; box-shadow: 0 0 0 3px rgba(195, 40, 30, 0.1); }
.input-icon-group input::placeholder { color: #aaa; }

.select-group select { appearance: none; cursor: pointer; }
.select-arrow { left: auto !important; right: 15px; font-size: 1rem !important; pointer-events: none; }

.checkout-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; background: #fdf5f5; padding: 15px; border-radius: 12px; border: 1px solid #f9dcdc; }
.security-badge { display: flex; align-items: center; gap: 12px; }
.security-badge i { font-size: 2rem; color: var(--primary-red); }
.sec-text { display: flex; flex-direction: column; }
.sec-text strong { font-size: 0.8rem; color: #111; }
.sec-text span { font-size: 0.65rem; color: #666; }

.btn-confirm-checkout { background: var(--primary-red); color: #fff; border: none; padding: 15px 25px; border-radius: 8px; font-size: 0.85rem; font-weight: 800; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.3s; }
.btn-confirm-checkout:hover { background: #a00000; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(195, 40, 30, 0.3); }

/* Checkbox Personalizado (Experiência Extra) */
.checkbox-group { display: flex; flex-direction: column; gap: 12px; background: #fafafa; border: 1px solid #e0e0e0; padding: 15px; border-radius: 8px; }
.custom-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.8rem; color: #333; font-weight: 600; user-select: none; }
.custom-checkbox input { display: none; } /* Oculta o padrão do navegador */
.custom-checkbox .checkmark { width: 22px; height: 22px; border: 2px solid #ccc; border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: 0.2s; background: #fff; }
.custom-checkbox input:checked + .checkmark { background: var(--primary-red); border-color: var(--primary-red); }
.custom-checkbox input:checked + .checkmark::after { content: '✔'; color: white; font-size: 0.85rem; font-weight: 800; }


/* Lado Direito (Visual) */
.checkout-right { flex: 0.8; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2)), url('assets/modalbg.jpeg') no-repeat center; background-size: cover; position: relative; display: flex; align-items: flex-end; padding: 40px; }
.checkout-right-content { position: relative; z-index: 2; width: 100%; }
.checkout-right-content h3 { font-family: var(--font-heading); font-size: 3rem; line-height: 0.9; color: #fff; margin-bottom: 10px; font-style: italic; }
.checkout-right-content p { font-size: 0.85rem; color: #ddd; margin-bottom: 25px; }

.checkout-features { display: flex; gap: 20px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }
.c-feat { display: flex; align-items: center; gap: 8px; font-size: 0.6rem; font-weight: 800; color: #fff; }
.c-feat i { font-size: 1.5rem; color: var(--primary-red); }

/* Responsividade Mobile Absoluta */
@media (max-width: 900px) {
    .checkout-modal-content { flex-direction: column; max-height: 95vh; overflow-y: auto; }
    .checkout-right { display: none; } /* Oculta a imagem no celular para focar apenas na conversão */
    .checkout-left { padding: 30px 20px; }
    .checkout-title { font-size: 2.8rem; }
    .form-grid { grid-template-columns: 1fr; gap: 15px; }
    .checkout-footer { flex-direction: column; gap: 15px; text-align: center; }
    .btn-confirm-checkout { width: 100%; justify-content: center; }
}



/* =========================================================
   EXPERIÊNCIAS EXTRAS (COLUNA LATERAL DISCRETA)
   ========================================================= */
.pe-pacotes-extras {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.extras-side-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.extras-side-title i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.extra-side-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
    padding-bottom: 12px;
}
.extra-side-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.extra-side-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    color: #111;
    transition: 0.2s;
}
.extra-side-head:hover { color: var(--primary-red); }
.extra-side-head i { font-size: 1.1rem; color: #888; transition: transform 0.3s ease; }

.extra-side-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Área de Rolagem Discreta */
.extra-scroll-area {
    padding-top: 15px;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
}
.extra-scroll-area::-webkit-scrollbar { width: 3px; }
.extra-scroll-area::-webkit-scrollbar-track { background: #f9f9f9; border-radius: 4px; }
.extra-scroll-area::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.extra-scroll-area::-webkit-scrollbar-thumb:hover { background: var(--primary-red); }

.extra-scroll-area p { font-size: 0.7rem; color: #555; line-height: 1.5; }
.extra-scroll-area p strong { color: #111; font-size: 0.75rem; }

/* Animações de Abertura */
.extra-side-item.active .extra-side-body { max-height: 280px; }
.extra-side-item.active .extra-side-head { color: var(--primary-red); }
.extra-side-item.active .extra-side-head i { transform: rotate(45deg); color: var(--primary-red); }

/* =========================================================
   LAYOUT DE 3 COLUNAS PARA DESKTOP
   ========================================================= */
@media (min-width: 1024px) {
    .pe-container-3col {
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: space-between !important;
        gap: 2%; 
    }
    
    .pe-container-3col .pe-pacotes-left {
        width: 22% !important;
        padding-right: 0 !important;
    }
    
    .pe-container-3col .pe-pacotes-right {
        width: 50% !important;
        flex-direction: row !important;
        gap: 15px !important;
    }
    
    .pe-container-3col .pe-pacotes-extras {
        width: 26% !important;
        margin-top: 0;
        height: auto;
    }
}


/* =========================================================
   FOOTER (RODAPÉ)
   ========================================================= */
.site-footer {
    background-color: #080808;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
    color: #fff;
    z-index: 10;
}

/* Marca d'água no fundo à direita (Você pode trocar a URL pela imagem real da bandeira depois) */
.footer-bg-watermark {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #080808 0%, rgba(8,8,8,0) 100%), url('assets/bgft.jpeg') no-repeat center right; 
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Topo do Footer (3 Colunas) --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 70px 5%;
    gap: 40px;
}

.footer-col { flex: 1; }
.about-col { max-width: 350px; }
.nav-col { max-width: 180px; }
.contact-col { max-width: 250px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.f-logo-emblema { height: 35px; object-fit: contain; }
.f-logo-text { display: flex; flex-direction: column; justify-content: center; }
.f-logo-text .white { font-family: var(--font-heading); font-size: 1.3rem; line-height: 1; letter-spacing: 0.5px; color: #fff; }
.f-logo-text .red { font-family: var(--font-body); font-size: 0.55rem; font-weight: 700; line-height: 1; letter-spacing: 1px; margin-top: -2px; }

.footer-desc { font-size: 0.8rem; color: #aaa; line-height: 1.6; margin-bottom: 25px; }

.footer-socials { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; text-decoration: none; transition: 0.3s; }
.social-link:hover { border-color: var(--primary-red); background: var(--primary-red); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(195,40,30,0.3); }

.footer-title { font-size: 0.85rem; font-weight: 800; color: #fff; margin-bottom: 25px; letter-spacing: 0.5px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
.footer-links a:hover { color: var(--primary-red); padding-left: 5px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.footer-contact-list li { display: flex; align-items: center; gap: 12px; color: #aaa; font-size: 0.85rem; }
.footer-contact-list li i { color: var(--primary-red); font-size: 1.3rem; }

/* --- Barra Inferior --- */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; }

.f-cred { display: flex; align-items: center; gap: 15px; }
.f-cred-icon { width: 45px; height: 45px; background: rgba(195,40,30,0.15); border-radius: 12px; color: var(--primary-red); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.f-cred-text span { font-size: 0.65rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.f-cred-text strong { display: block; font-size: 0.8rem; color: #fff; margin-top: 2px; }

.f-copy { font-size: 0.75rem; color: #888; }

.f-powered { display: flex; align-items: center; gap: 8px; }
.f-powered span { font-size: 0.6rem; color: #888; font-weight: 600; letter-spacing: 0.5px; }
.f-powered img { height: 18px; object-fit: contain; }

/* --- Responsividade Absoluta --- */
@media (max-width: 900px) {
    .footer-top { flex-direction: column; gap: 50px; padding: 50px 5%; }
    .about-col, .nav-col, .contact-col { max-width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 25px; padding-bottom: 40px; }
    .f-cred { flex-direction: column; text-align: center; }
    .f-powered { justify-content: center; margin-top: 10px; }
    .footer-bg-watermark { opacity: 0.05; width: 100%; }
}