html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Remove a rolagem lateral */
}

    /* Impede scroll vertical quando o Lightbox está aberto */
    body.lb-open {
        overflow: hidden !important;
    }

/* Hero Section */
.hero {
    background-image: url('/img/capa.png');
    background-size: cover;
    background-position: center;
    height: 730px;
    max-height: 730px;
    width: 100%;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
}

.btn-primary {
    background-color: #17275d;
    border: none;
}

.tituloImg {
    max-width: 60%;
    color: #ffffff;
    font-family: "Antic Didone", Sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ptitulo {
    color: #ffffff;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.logo-img {
    height: 100px;
    margin-bottom: 5px;
    margin-top: -370px;
}

.cta-section {
    background: linear-gradient(to bottom, #0f2a6d, #111);
}

/* Swiper */
.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lightbox ajustes */
.lb-close {
    position: fixed;
    top: 15px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: none;
    color: white !important;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 10000;
    opacity: 1 !important;
}



.lb-prev, .lb-next {
    z-index: 9999;
    opacity: 1 !important;
    width: 80px;
}

.lb-outerContainer {
    max-height: 90vh;
}

.form-label {
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.form-obrigatorio {
    color: #c0392b;
    font-size: 0.9em;
    font-style: italic;
}

.form-control-custom {
    border: none;
    border-bottom: 1px solid #2c3e50;
    border-radius: 0;
    box-shadow: none;
    font-family: 'Montserrat', sans-serif;
}

    .form-control-custom:focus {
        border-color: #2c3e50;
        outline: none;
        box-shadow: none;
    }

textarea.form-control-custom {
    resize: none;
}

.btn-enviar {
    background-color: #17275d;
    color: white;
    padding: 10px 30px;
    border-radius: 6px;
    border: none;
}

    .btn-enviar:hover {
        background-color: #0f1a3f;
    }

.rodapeP {
    text-align: center;
    color: #171615;
    font-family: "Montserrat", Sans-serif;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 0;
    box-sizing: border-box;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

    .float:hover {
        transform: scale(1.15);
        color: white;
        background-color: #1ebe5d; /* tom mais escuro no hover */
    }


    .float i {
        font-size: 28px;
        line-height: 1;
    }
