/* style.css */
/* Fonte geral do site */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.8;
    color: var(--dark-color);
}

:root {
    --primary-color: #f78139;
    --secondary-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --text-dark: #212121;
    --text-light: #ffffff;
    --text-dark-bg: #ffffff;
    --text-light-bg: #000000;
}

.navbar {
    background-color: #30d0de;
    transition: all 0.3s ease;
    padding: 15px 0px 15px 0px;
}

.navbar .logo {
    width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.navbar .logo:hover {
    transform: scale(1.05);
}

.navbar-brand {
    margin: left;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    font-weight:900;;
}

@media (min-width: 992px) {
    .navbar-nav {
        margin-left: auto;
    }
}

.hero-section {
    background: linear-gradient(to bottom, #30D0DE, #27b2be, #1b6f76);
    padding: 60px 0 40px 0 !important;
    position: relative;
    overflow: hidden;
}

/* camada da imagem acima do gradiente */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%; /* cobre toda a largura */
    background: url("https://www.weblogos.com.br/sites-personalizados/images/fundo.png") no-repeat right center;
    background-size: auto 100%; /* adapta à altura */
    pointer-events: none; /* não atrapalha clique em botões/links */
    z-index: 1;
}

/* garante que o conteúdo fique acima da imagem */
.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23f5f5f5" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom;
    z-index: -1;
}

.hero-section h1 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

.hero-section .lead,
.hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3.75rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    .hero-section .lead,
    .hero-section p {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.50rem 1.5rem;
    transition: all 0.3s ease;
    font-size:16px;
}
.quadros-centro{
    margin-bottom:30px;
}
.btn-primary:hover {
    background-color: #f78139  !important;
    border-color: #f78139  !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-light {
    color: v#212121;;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

h2, h3, h4, h5, h6 {
    font-weight: 700;
}

section:not(.bg-light):not(.bg-primary) h2,
section:not(.bg-light):not(.bg-primary) h3,
section:not(.bg-light):not(.bg-primary) h4,
section:not(.bg-light):not(.bg-primary) h5,
section:not(.bg-light):not(.bg-primary) h6 {
    color: var(--text-light-bg);
}

.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6 {
    color: var(--text-light-bg);
}

.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    color: var(--text-dark-bg);
}

.card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card-title {
    font-weight: 600;
    color: var(--dark-color);
}

.text-primary {
    color: #30D0DE !important;
}

.text-secondary {
    color: #24bbc8 !important;
}

.logo-rodape {
    width:30px;
    margin-bottom: 20px;
}

.bg-light {
    background-color: var(--secondary-color) !important;
}

.bg-primary {
    background-color:#24bbc8 !important;
}

.bg-secondary {
    background-color: #f78139 !important;
}

.list-unstyled li {
    font-size: 1.1rem;
    color: #555;
}

.countdown div {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 5px;
    min-width: 80px;
}

.form-control, .form-select {
    border-radius: 5px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(241,98,50,0.25);
}

.accordion-button {
    font-weight: 500;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-body {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
}

footer {
    background-color: var(--dark-color);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
}


h1 {
    font-size: 50px !important;
}

h2 {
    font-size: 50px !important;
}

h3 {
    font-size: 35px !important;
}

/* Countdown Bar Styles */
.countdown-bar {
    z-index: 1000;
    position: relative;
}
.pt-5 {
    padding-top: 1rem !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        color: #fff;
        font-weight: 600;
    }
}
.ps-3 {
    line-height: 25px;
}

p {
    line-height: 24px;
}


@media (max-width: 768px) {

    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    h3 {
        font-size: 20px !important;
    }
    
    .navbar .logo {
        width: 140px;
        height: auto;
        transition: transform 0.3s ease;
    }
    .navbar-nav .nav-link {
        color: #ffffff;
        font-weight: 500;
        padding: 0.8rem 1rem;
        transition: color 0.3s ease;
        text-transform: uppercase;
        border-bottom: 1px solid;
    }
}

.count-horas{
    background: #ffffff;
    color:#24bbc8;
    padding: 3px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}
.count-minutos {
    background: #ffffff;
    color:#24bbc8;
    padding: 3px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;

}
.count-segundos {
     background: #ffffff;
    color:#24bbc8;
    padding: 3px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;

}
.btn-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 25px;
    text-align: center;
    padding: 3px 10px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.2s ease;
}

    .btn-whatsapp:hover {
        transform: scale(1.1);
        color: white;
        text-decoration: none;
    }


.navbar-toggler {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.mobile {
    display: none;
}

/* Esconde no mobile */
.desktop {
    display: block;
}

.mobile video {
  width: 100% !important;
  height: auto !important;
  max-height: 100vh; /* nunca passa da altura da tela */
}

/* Quando for mobile (até 768px) */
/* Sempre mostrar a versão mobile em telas pequenas ou em celulares */
@media (max-width: 991px), (orientation: landscape) and (max-height: 500px) {
    .mobile {
        display: block;
        padding-top:30px !important;
    }
    .desktop {
        display: none;
    }
    .count-horas{
        padding: 1px 3px !important;
        border-radius: 4px;
        font-size: 12px !important;
    }
    .count-minutos {
        background: #ffffff;
        color:#24bbc8;
        padding: 1px 3px !important;
        border-radius: 4px;
        font-size: 12px !important;

    }
    .count-segundos {
        background: #ffffff;
        color:#24bbc8;
        padding: 1px 3px !important;
        border-radius: 4px;
        font-size: 12px !important;
        font-weight: 600;

    }
    /* Classe adicionada via JS ao entrar na tela */
    .oferta {
    font-size:12px !important;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 → (9 ÷ 16 = 0.5625 = 56.25%) */
    height: 0;
    margin: 20px 0 15px 0 !important;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* === Animação sutil de fade + subir para elementos internos === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Elementos animáveis começam invisíveis */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Classe adicionada via JS ao entrar na tela */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.mt-5 {
    margin-top: 0.7rem !important;
}

 .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            background: #216f7600;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: none; /* começa escondido */
        }

        .video-preloader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 4px solid #f3f3f3;
            border-top: 4px solid #30a7b1;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

#logos-marcas {
            overflow: hidden;
            position: relative;
            padding: 0px !important;
            background: #101010 !important;
            min-height: 0px;
        }

        .logos-wrapper {
            width: 100%;
            overflow: hidden;
        }

        .swiper-wrapper {
            display: flex !important;
        }

        .logo-item {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
        }

        .logo-item img {
            display: block;
            width: 100%;
            max-width: 120px;
            height: auto;
            object-fit: contain;
        }

        @media (min-width: 992px) {
            .logo-item {
                width: calc(100% / 10); /* 10 logos no desktop */
            }
        }

        @media (max-width: 991px) {
            .logo-item {
                width: calc(100% / 4); /* 4 logos no mobile */
            }
        }

        .debug-message {
            color: white;
            text-align: center;
            font-size: 18px;
            padding: 20px;
        }


        .swiper-slide .logo-item{
            margin-right:0px !important;
        }