/* Cores principais (baseado no design) */
:root {
    --primary-pink: #B01E24; /* Cor rosa principal do design */
    --dark-text: #072043;
    --muted-text: #6c757d;
    --light-gray-bg: #f8f9fa; /* Cor de fundo clara padrão do Bootstrap */
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 63px; /* Ajuste conforme a altura da sua navbar fixa */
    color: #072043;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}


.text-pink {
    color: var(--primary-pink) !important;
}

/* Navbar */
.custom-navbar {
    /* Fundo semi-transparente para o hero background-color: rgba(3, 28, 62, 0.3);*/
    background-color: #031C3E;
    transition: background-color 0.3s ease-in-out;
}
.custom-navbar.scrolled { /* Classe a ser adicionada via JS no scroll */
    background-color: #031C3E; /* Cor sólida ao rolar */
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar-brand img {
    margin-right: 0.5rem;
}
.nav-link {
    color: rgba(255,255,255,0.8) !important;
}
.nav-link:hover {
    color: #fff !important;
}
.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh; /* Ajuste conforme necessário */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Garante que o vídeo não ultrapasse */
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Overlay escuro sobre o vídeo */
    z-index: -50;
}

.hero-content {
    position: relative; /* Para garantir que fique acima do overlay */
    z-index: 1;
}
.hero-content h1 {
    font-size: 3rem; /* Ajuste */
}
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem; /* Ajuste */
    }
}

.custom-btn-pink {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: white;
    font-weight: 500;
}
/* .custom-btn-pink:hover {
    background-color: #d4007a;
    border-color: #d4007a;
    color: white;
}
 */
/* Company Logos Section */
.company-logos-section {
    background-color: #fff;
}
.company-logo {
    max-height: 70px; /* Ajuste conforme o tamanho dos seus logos */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Features Section & Services Section (Cards) */
.features-section h2 {
    font-size: 48px;
    font-weight: 600;
    font-style: normal;
}
.features-section h5 {
    font-weight: 600;
    font-size: 30px;
    font-style: normal;
}
.features-section .badge, .content-image-section .badge, .services-section .badge, .testimonials-section .badge, .cta-section .badge {
    font-size: 0.8rem;
    font-weight: 500;
}
.feature-card, .service-card { /* Estilo comum para cards de feature/serviço */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.feature-card:hover, .service-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 0.5rem 1rem rgba(0,0,0,.10)!important; */
}
.icon-box-pink {
    width: 70px;
    height: 70px;
    background-color: rgba(17, 48, 89, 0.1); /* Rosa bem claro */
    border-radius: 15px; /* Bordas arredondadas como no design */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
}

.icon-box-pink .icon  {
    width: 48px;
    height: 48px;
}

/* Content Image Section */
.content-image-section {
    background-color: #B42429; /* Um cinza um pouco diferente para destacar */
    position: relative;
    overflow: hidden; /* Para a imagem de fundo se necessário */
}
.content-image-section h2 {
    line-height: 1.3;
}
.content-image-section h2 {
    font-weight: 600;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
}
.badge-custom {
    display: inline-block;
    padding: 0.5em 0.9em;
    margin: 0.25em;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 20px; /* Arredondado */
    background-color: #f0f0f0; /* Cinza claro */
    color: #555;
    border: 1px solid #e0e0e0;
}
.badge-custom i {
    color: var(--primary-pink); /* Ícone rosa dentro do badge */
}

/* Services Section */
.services-section h2 {
    font-weight: 600;
    font-size: 48px;
    font-style: normal;
}

/* Testimonials Section */
.testimonials-section h2 {
    font-weight: 600;
    font-size: 48px;
    font-style: normal;
}
.testimonial-card {
    text-align: initial;
}
.testimonial-card img.rounded-circle {
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.testimonials-section .footer-shadow {
    position: absolute;
    background: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 10px;
    width: 560px;
}

/* CTA Section */
.cta-section {
    background-color: #B42429; /* Um cinza um pouco diferente para destacar */
    position: relative;
    overflow: hidden; /* Para a imagem de fundo se necessário */
}
.line-through {
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
}
.cta-box {
    position: relative;
    z-index: 2;
}
.cta-section .img-fluid { /* Imagem ao lado do CTA box */
    margin-bottom: -5rem; /* Para sobrepor um pouco a borda inferior */
    position: relative;
    z-index: 1;
}


/* Footer */
.footer-section {
    background-color: var(--dark-text); /* Cor escura do design */
}
.footer-section strong {
    color: var(--primary-pink);
}
.footer-section a {
    text-decoration: none;
}

/* Estilos opcionais para dar mais impacto à seção */
#labirinto {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
#labirinto h2 {
    font-weight: 700;
    color: #343a40;
}
#labirinto h3.subtitulo {
    font-weight: 400;
    color: #495057;
    max-width: 800px; /* Limita a largura para melhor legibilidade */
    margin-left: auto;
    margin-right: auto;
}
.monster-card {
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.monster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.monster-card .bi {
    font-size: 3.5rem;
    color: #dc3545; /* Vermelho para os ícones, simbolizando alerta */
}
.monster-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #212529;
}
.transition-text {
    border-top: 1px solid #dee2e6;
    padding-top: 3rem;
    margin-top: 2rem;
}


#solucao {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.product-image {
    max-width: 100%;
    border-radius: 0.5rem;
}
#solucao h2 {
    font-weight: 700;
    color: #198754; /* Verde para simbolizar 'solução', 'vá em frente' */
}
#solucao p.lead {
    font-weight: 500;
}
.benefit-list {
    list-style: none;
    padding-left: 0;
}
.benefit-list li {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
}
.benefit-list .bi {
    font-size: 1.5rem;
    color: #198754;
    margin-right: 1rem;
    margin-top: 0.1rem;
}
.benefit-list strong {
    color: #212529;
    display: block; /* Garante que o texto principal comece abaixo */
}
.cta-button {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
}

#prova-social {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa; /* Um cinza muito claro para destacar a seção */
}
#prova-social h2 {
    font-weight: 700;
}
.testimonial-card {
    border: none;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.08);
    transition: transform 0.2s ease-in-out;
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-8px);
}
.testimonial-card .card-body {
    padding: 2rem;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #fff;
    margin-top: -40px; /* Puxa a imagem para cima, sobrepondo o card */
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}
.testimonial-card .card-title {
    font-weight: 600;
}
.stars {
    color: #ffc107; /* Amarelo para as estrelas */
}
.testimonial-card .problem-statement {
    font-size: 0.95rem;
    color: #6c757d; /* Cinza para o 'problema' */
    border-left: 3px solid #dee2e6;
    padding-left: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.testimonial-card .card-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

#oferta {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
#oferta h2 {
    font-weight: 700;
}
.offer-box {
    background-color: #fff;
    border: 2px solid #198754; /* Borda verde para reforçar o valor */
    border-radius: 0.75rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.15);
    max-width: 800px;
    margin: auto;
}
.offer-header {
    background-color: #198754;
    color: #fff;
    padding: 1.5rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.offer-header h3 {
    font-weight: 700;
    margin: 0;
}
.offer-body {
    padding: 2.5rem;
}
.value-stack-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}
.value-stack-item .bi {
    color: #198754;
    font-size: 1.5rem;
    margin-right: 1rem;
}
.value-stack-item .price-tag {
    margin-left: auto;
    font-weight: 600;
}
.total-value {
    font-size: 1.2rem;
    font-weight: 500;
}
.total-value .strikethrough {
    text-decoration: line-through;
    color: #dc3545;
}
.final-price h4 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #212529;
}
.final-price .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #198754;
}
.cta-button {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem 2rem;
    text-transform: uppercase;
}
.guarantee-box {
    background-color: #f8f9fa;
    border: 1px dashed #6c757d;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
}
.guarantee-box .bi {
    font-size: 2.5rem;
    color: #212529;
}


@media (max-width: 575.98px) {
    body {
        padding-top: 56px;
    }
    .navbar-brand {
        font-size: 0.6rem;
    }
    .footer-section p {
        text-align: center;
    }
}