/* 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 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;
}


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