@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

        :root {
            --cor-fundo-claro: #f0f2f5;
            --cor-fundo-escuro: #121212;
            --cor-header-claro: #ffffff;
            --cor-header-escuro: #1e1e1e;
            --cor-texto-claro: #000000;
            --cor-texto-escuro: #ffffff;
            --cor-destaque: #005A9C;
            --cor-cta-claro: #000000;
            --cor-cta-escuro: #ffcc00;
            --sombra-box: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transicao-suave: 0.3s ease;
        }

        body.light-mode {
            background-color: var(--cor-fundo-claro);
            color: var(--cor-texto-claro);
             font-family: 'Montserrat', sans-serif;
        }

        body.dark-mode {
            background-color: var(--cor-fundo-escuro);
            color: var(--cor-texto-escuro);
        }

        body {
            margin: 0;
             font-family: 'Montserrat', sans-serif;
            transition: background-color var(--transicao-suave), color var(--transicao-suave);
        }

        .container {
            max-width: 80%;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-trade {
            background-color: rgba(196, 196, 196, 0.8);
             backdrop-filter: blur(50px);
            text-align: center;
            transition: background-color var(--transicao-suave);
            position: fixed;
            top: 0;
            left: 0;
            box-sizing: border-box; 
            width: 100%;
            z-index: 999;
        }

        body.dark-mode .header-trade {
            background-color: var(--cor-header-escuro);
        }

        .header-trade .logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 10px;
        }

        .header-trade .logo-parceiro {
            height: 20px;
            opacity: 0.4;
        }

        .header {
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            padding: 7px 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 50px;
            left: 0;
            width: 100%;
            z-index: 998;
            box-shadow: var(--sombra-box);
            transition: background-color var(--transicao-suave);
            height: 94px; 
            box-sizing: border-box; 
        }

        body.dark-mode .header {
            background-color: var(--cor-header-escuro);
        }

        .header .logo img {
            max-height: 80px;
        }

        .header .menu-desktop {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: nowrap; 
        }

        .header .menu-desktop a {
            color: var(--cor-texto-claro);
            text-decoration: none;
            font-weight: bold;
            transition: color var(--transicao-suave);
        }

        body.dark-mode .header .menu-desktop a {
            color: var(--cor-texto-escuro);
        }

        .header .menu-desktop a:hover {
            opacity: 0.5;
        }

        .header .btn-entrar {
            background-color: transparent;
            color: var(--cor-cta-claro);
            padding: 12px 25px 10px 25px;
            text-decoration: none;
            border-radius: 200px;
            font-weight: bold;
            border: 1px solid black;
            transition: background-color var(--transicao-suave), color var(--transicao-suave);
        }

        .header .btn-entrar:hover {
            opacity: 0.8;
        }

        .header-trade {
            text-align: center;
            padding: 5px 0;
        }

        .testeira-header {
            text-align: center;
            padding: 5px 0;
        }

        .testeira-header img {
            width: 100%;
            max-height: 80px;
            object-fit: cover;
        }

        .banner-hero {
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ffffff;
            font-size: 2em;
            text-align: center;
        }

        .menu-hamburguer {
            display: none;
            cursor: pointer;
            padding: 10px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: var(--cor-texto-claro);
            margin: 5px 0;
            transition: 0.4s;
        }

        body.dark-mode .bar {
            background-color: var(--cor-texto-escuro);
        }

        .menu-lateral {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1000;
            top: 0;
            right: 0;
            background-color: var(--cor-header-claro);
            overflow-x: hidden;
            transition: 0.5s;
            box-shadow: var(--sombra-box);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        body.dark-mode .menu-lateral {
            background-color: var(--cor-header-escuro);
        }

        .menu-lateral .menu-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
        }

        .menu-lateral .logo-sidebar img {
            max-width: 60px;
        }

        .menu-lateral a {
            padding: 15px 25px;
            text-decoration: none;
            font-size: 20px;
            color: var(--cor-texto-claro);
            display: block;
            transition: 0.3s;
            text-align: left;
        }

        body.dark-mode .menu-lateral a {
            color: var(--cor-texto-escuro);
        }

        .menu-lateral a:hover {
            color: var(--cor-destaque);
        }

        .menu-lateral .btn-fechar {
            font-size: 36px;
            text-decoration: none;
            color: var(--cor-texto-claro);
            margin-right: 30px;
        }

        body.dark-mode .menu-lateral .btn-fechar {
            color: var(--cor-texto-escuro);
        }

        .overlay {
            height: 100%;
            width: 100%;
            position: fixed;
            z-index: 998;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0);
            backdrop-filter: blur(0px);
            transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
            pointer-events: none;
        }

        .overlay.ativo {
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            pointer-events: auto;
            z-index: 1000;
        }

        .banner-hero-carousel {
            position: relative;
            max-width: 100%;
            overflow: hidden;
            height: 100%;
            margin-top: 135px;
            aspect-ratio: 1920 / 600;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 1920 / 450;
        }

        .slide a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20;
        }

        .indicator {
            height: 5px;
            width: 10px;
            background-color: rgba(255, 255, 255, 0.4);
            border-radius: 200px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .indicator.active {
            background-color: rgba(255, 255, 255, 1);
            height: 5px;
            width: 30px;
        }

        .banner-hero-mobile {
            display: none;
        }
      
.section-como-participar {
    padding: 0;
}

.section-como-participar .container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.section-como-participar h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: bold;
    color: #003366; 
    text-align: center;
    margin-bottom: 20px;
    margin-top: 50px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    color: #005A9C; 
    margin-top: 0;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 1em;
    line-height: 1.5;
    color: var(--cor-texto-claro);
    text-align: justify;
}

.step-image {
    width: 200px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

.tarja-infinito {
    background-color: #005A9C;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 15px 0;
}

.tarja-content {
    display: inline-block;
    padding-left: 100%;
    animation: slide-left 120s linear infinite;
}

@keyframes slide-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.section-como-participar .btn-cta {
    display: block;
    width: fit-content;
    margin: 40px auto;
    background-color: #005A9C;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.section-como-participar .btn-cta:hover {
    background-color: #003366;
}

.section-lotes-compra {
    padding: 10px 0;
    text-align: center;
}

.section-lotes-compra h2 {
    font-size: 2em;
    color: #003366;
    margin-top: 80px;
    margin-bottom: 80px;
}

.lotes-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.lote-card {
    background-color: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    justify-content: space-between;
}

.lote-card.ativo {
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #005A9C;
    transform: translateY(-10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lote-card.expirado {
    background-color: #e0e0e0;
    filter: grayscale(100%);
    opacity: 0.7;
}

.lote-card h3 {
    background-color: #005A9C;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: -50px;
    margin-bottom: 20px;
}

.lote-card .icon-lote {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.lote-card .valores {
    margin-bottom: 15px;
}

.lote-card-aguardando .btn-comprar {
      filter: grayscale(100%);
    opacity: 0.7;
    font-family: 'Montserrat', sans-serif;
}

        .lote-card-expirado .btn-comprar {
      filter: grayscale(100%);
    opacity: 0.7;
    font-family: 'Montserrat', sans-serif;
}

.lote-card .valor-comum {
    font-size: 1.5em;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

.lote-card .valor-pix {
    font-size: 2.5em;
    font-weight: 900;
    color: #003366;
    margin: 0;
}

.lote-card .texto-pix {
    font-size: 0.9em;
    color: #005A9C;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.lote-card .contador-regressivo, .lote-card .aguarde-inicio {
    font-size: 1em;
     color: #dc3545; 
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lote-card .btn-comprar {
    font-size: 1em;
    background-color: #005A9C;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.lote-card .btn-comprar:hover {
    background-color: #003366;
}

.lote-card-aguardando .icon-lote {
    filter: grayscale(100%);
    opacity: 0.7;
}

        .lote-card-expirado .icon-lote {
    filter: grayscale(100%);
    opacity: 0.7;
}

.lote-card-aguardando .valores {
    display: none;
}

        .lote-card-expirado .valores {
    display: none;
}

.lote-card-aguardando .aguarde-inicio {
    color: #003366;
}

.formas-pagamento {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 25px;
}

.formas-pagamento h4 {
    font-size: 0.8em;
    color: #555;
    margin-bottom: 5px;
font-weight: 500;
}

.formas-pagamento .icones-pagamento img {
    height: 50px;
    margin: 0 5px;
}

.footer {
    background-color:  var(--cor-header-claro);
    color: var(--cor-texto-claro);
    padding: 40px 0 20px 0;
    transition: background-color var(--transicao-suave), color var(--transicao-suave);
}

body.dark-mode .footer {
    background-color: var(--cor-header-escuro);
    color: var(--cor-texto-escuro);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

.footer-logo-img {
    width: 200px;
    margin-bottom: 20px;
}

.bi {
    width: 25px;
    height: 25px;
    opacity: 0.6;
}

.bi-linkedin:hover,
.bi-facebook:hover {
    color: #078ef4;
    opacity:1;
}

.bi-instagram:hover {
    color: #c90076;
    opacity:1;
}

        .bi-apple-music:hover {
    color: #fc3c44;
    opacity:1;
}

.bi-whatsapp:hover {
    color: #38761d;
    opacity:1;
}

.bi-spotify:hover {
    color: #50f409;
    opacity:1;
}

.bi-tiktok:hover {
    color: black;
    opacity:1;
}

.bi-youtube:hover {
    color: #f44336;
    opacity:1;
}

.social-icons {
    gap: 50px;
}

.social-icons svg {
    transition: transform 0.3s ease;
    color: black;
    gap: 20px;
    width: 2em;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--cor-texto-claro);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--cor-destaque);
}

body.dark-mode .footer-nav a {
    color: var(--cor-texto-escuro);
}

.parceiros-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.parceiro-img {
    max-height: 30px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}


.devs-container {
    display: flex;
    flex-direction: column;
}

.dev-card {
    text-align: center;
    cursor: pointer;
}

.dev-img {
    height: 50px;
    object-fit: cover;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 0.9em;
    color: #666;
}

body.dark-mode .footer-bottom {
    border-top-color: #444;
    color: #999;
}


.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.easteregg-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.easteregg-text {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--cor-destaque);
}

.section-premios {
    padding: 50px 0 20px;
    background-color: var(--cor-destaque);
    text-align: center;
}

.section-premios h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: white;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.premios-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.premio-card {
     background-color: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 340px;
    display: flex;
    flex-direction: column;
}

.premio-card:hover {
    transform: scale(1.1);
}

.premio-imagem-container {
    background-color: #f5f5f5;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px; 
}

.premio-imagem-container img {
    height: 180px;
    object-fit: contain;
}

.premio-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
}

.premio-info h3 {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--cor-destaque);
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.premio-info p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.btn-cta-premios {
    background-color: white;
    color: var(--cor-destaque);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
}

.btn-cta-premios:hover {
    background-color: #b2b2b2;
}

.faq-container {
    max-width: 1100px;
    padding: 20px;
    margin: 40px auto;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #003366;
    text-transform: uppercase;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px; 
    overflow: hidden; 
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px; 
    text-align: left;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    color: var(--cor-destaque);
}

.faq-icon {
    transition: transform 0.3s ease;
    min-width: 20px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: var(--cor-destaque);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #555;
    font-size: 1em;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 20px 20px;
}

.faq-answer.active {
    max-height: 1000px; 
    transition: max-height 0.5s ease-in;
}

.section-depoimentos {
    padding: 0px;
    background-color: var(--cor-fundo-claro); 
    text-align: center;
}

.section-depoimentos h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #003366; 
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-depoimentos h2.titulo-secundario {
    margin-top: 70px; 
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px 30px; 
    max-width: 1200px; 
    margin: 0 auto 50px auto;
    align-items: center;
}

.depoimento-card {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    text-align: left; 
}

.depoimento-imagem img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--sombra-box);
}

.depoimento-conteudo {
    flex: 1;
}

.depoimento-nome {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 900;
    color: var(--cor-texto-claro);
    margin: 0;
    text-transform: uppercase;
}

.depoimento-cargo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    color: #555;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.depoimento-texto {
    background-color: var(--cor-destaque); 
    color: white;
    padding: 15px 20px;
    border-radius: 0 20px 20px;
    position: relative;
}

.depoimento-texto p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.5;
    font-weight: 500;
}

.depoimento-texto::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 12px;
    border-style: solid;
    border-color: transparent var(--cor-destaque) transparent transparent;
}


.depoimentos-cta {
    margin-top: 30px;
}

        .section-depoimentos .btn-cta {
    display: block;
    width: fit-content;
    margin: 40px auto;
    background-color: #005A9C;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.section-slider-lojas {
    padding: 50px 0;
    background-color: var(--cor-fundo-claro); 
    text-align: center;
}

.section-slider-lojas h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #003366; 
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.logo-slider-container {
    overflow: hidden;
    position: relative;
}

.logo-slider-track {
    display: flex;
    width: fit-content;
    animation: slide-left-logos 80s linear infinite; 
}

        .logo-slide-set {
    display: flex; 
    flex-shrink: 0; 
    white-space: nowrap; 
}


.logo-slider-track:hover {
    animation-play-state: paused;
}

.logo-slide-item {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 180px; 
    aspect-ratio: 28 / 17; 
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    box-sizing: border-box;
    transition: all var(--transicao-suave);
}

.logo-slide-item:hover {
     box-shadow: 0 6px 15px rgba(0,0,0,0.1);
     transform: scale(1.05);
}

.logo-slide-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all var(--transicao-suave);
}

@keyframes slide-left-logos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-slider-lojas .subtitulo-cta {
    font-size: 1.3em;
    color: #333;
    font-weight: 500;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.section-slider-lojas .btn-cta-lote {
    background-color: var(--cor-destaque);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    transition: all var(--transicao-suave);
    display: inline-block;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.section-slider-lojas .btn-cta-lote:hover {
    background-color: #003366;
    transform: scale(1.05);
}


.section-metricas {
    padding: 50px 0;
    background-color: var(--cor-fundo-claro); 
    text-align: center;
}

.section-metricas h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em; 
    color: #003366; 
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-metricas .metricas-intro {
    font-size: 1em;
    color: #333;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    padding: 0 20px;
}

.metricas-chart-v4-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px auto;
}

.metricas-card-v4 {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.metricas-chart-v4-bars {
    display: flex;
    align-items: flex-end; 
    justify-content: space-around;
    height: auto;
    padding-top: 25px;
    padding-bottom: 25px;
}


.metricas-bar-item-v4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: clamp(70px, 20vw, 100px);
}

.metricas-label-v4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}
.metricas-label-v4 .metricas-icon-v4 {
    width: 35px;
    height: 35px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.metricas-label-v4 strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 900;
    line-height: 1.1;
}
.metricas-label-v4 span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5em;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    line-height: 1.2;
}

.metricas-label-v4.metricas-vendas { color: #00A86B; }
.metricas-label-v4.metricas-vendas .metricas-icon-v4 { fill: #00A86B; }
.metricas-label-v4.metricas-cupons { color: #3B3B98; }
.metricas-label-v4.metricas-cupons .metricas-icon-v4 { fill: #3B3B98; }
.metricas-label-v4.metricas-midia { color: #E91E63; }
.metricas-label-v4.metricas-midia .metricas-icon-v4 { fill: #E91E63; }
.metricas-label-v4.label-highlight .metricas-icon-v4 {
    filter: drop-shadow(0 0 10px #00A86B);
}

.bar-inner-v4 {
    width: 80%;
    height: calc(250px * var(--height, 0)); 
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

.bar-inner-v4.bar-vendas-v4 { background-color:  #00A86B; }
.bar-inner-v4.bar-cupons-v4 { background-color: #3B3B98; }
.bar-inner-v4.bar-midia-v4 { background-color: #E91E63; }

.metricas-footer-v4 {
    text-align: center;
}
.metricas-year-v4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    font-weight: 900;
    color: #111;
    margin: 0;
}
.metricas-lojas-v4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: #333;
    margin: 5px 0 0 0;
    text-transform: uppercase;
}

.btn-cta-metricas {
    background-color: var(--cor-destaque); 
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 20px 0;
    border: none;
    cursor: pointer;
}

.metricas-conclusao {
    font-size: 1.1em;
    font-weight: 700;
    color: #003366;
    max-width: 600px;
    margin: 20px auto 0 auto;
    padding: 20px;
    border-top: 2px solid #005A9C;
    display: inline-block;
}


.section-metricas.is-visible .metricas-card-v4 {
    opacity: 1;
    transform: translateY(0);
}
.section-metricas.is-visible .bar-inner-v4 {
    transform: scaleY(1);
}
.section-metricas.is-visible .metricas-label-v4 {
    opacity: 1;
    transform: translateY(0);
}

.section-metricas.is-visible .metricas-card-v4:nth-child(2) { transition-delay: 0.1s; }
.section-metricas.is-visible .metricas-card-v4:nth-child(3) { transition-delay: 0.2s; }

@media (min-width: 768px) {
    .section-metricas h2 {
        font-size: 2em; 
    }

    .metricas-chart-v4-bars {
    height: 370px;
    padding-top: 0px;
}

    .metricas-chart-v4-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .metricas-label-v4 strong {
        font-size: 1.4em;
    }
}

        @media (max-width: 1350px) {
             .header .menu-desktop a { font-size: 1vw;}
        }

 @media (max-width: 1000px) {
              .header .menu-desktop { display: none;}
              .menu-hamburguer { display: block;}
        }

        @media (max-width: 768px) {
            .header .menu-desktop {
                display: none;
            }

            .banner-hero-desktop {
                display: none;
            }

            .banner-hero-mobile {
                display: block;
                margin-top: 160px;
            }

            .banner-hero-mobile .slide img {
                width: 100%;
                height: auto;
                object-fit: contain;
                aspect-ratio: 700 / 800;
            }

  .banner-hero-carousel {
            aspect-ratio: 700 / 800;
        }
            
            .header-trade {
                padding: 10px;
            }
            
            .header-trade .logos {
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .header-trade .logo-parceiro {
             height: 15px;
              }

            .header {
                padding: 10px;
                top: 75px;
            }
            
            .container {
            max-width: 100%;
            }

            .menu-hamburguer {
                display: block;
            }
            
            .section-como-participar .container {
    padding: 0 30px;
}

.faq-container {
    max-width: 400px;
}

.faq-container h2,
            .section-premios h2,
              .section-como-participar h2 {
        font-size: 1.5em;
    }

    .step-item, .step-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

 .step-item h3,
    .step-item p {
        text-align: center;
    }
    
      .section-lotes-compra h2 {
        font-size: 1.5em;
        margin-bottom: 50px;
    }

    .lote-card {
        width: 90%;
    }
    
    .lote-card h3 {
        margin-top: -35px;
    }

    
    .lote-card {
    padding: 20px;
margin-bottom: 25px;
}

.btn-cta-premios,
.lote-card .btn-comprar {
    font-size: 0.8em;
}

.lote-card .contador-regressivo, .lote-card .aguarde-inicio {
    font-size: 0.7em;
}
    
    .formas-pagamento .icones-pagamento img {
    height: 60px;
}

  .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0px;
    }
    
    .footer-logo-img {
    width: 100px;
    margin-bottom: 0px;
}

    .footer-section {
        margin-bottom: 10px;
    }
   
    .footer-bottom {
        margin: 20px;
    }

    .footer-nav ul {
        text-align: center;
    }
    
    .dev-img {
    height: 40px;
}

    .parceiros-footer, .devs-container {
        justify-content: center;
    }

    .premios-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .premio-card {
        width: 90%;
        max-width: 380px;
    }
    
    .modal-content {
        width: 300px;
            
        }

            .depoimento-card {
    align-items: center;
            }

 .section-depoimentos h2 {
        font-size: 1.5em; 
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .depoimento-card {
        flex-direction: column; 
        text-align: center; 
        gap: 15px;
    }
    
    .depoimento-imagem img {
        width: 80px;
        height: 80px;
    }

            
.depoimento-texto {
    border-radius: 12px;
}

             .section-depoimentos .btn-cta {
font-size: 0.8em;}
   
    .depoimento-texto::before {
        display: none; 
    }
    
    .depoimento-conteudo {
        width: 100%;
    }

            .section-slider-lojas h2 { font-size: 1.5em; }
    .logo-slide-item { 
        width: 140px; 
    }
    .section-slider-lojas .subtitulo-cta { font-size: 1.1em; }
    .section-slider-lojas .btn-cta-lote { font-size: 1em; }

        }
