/*ESTILOS GERAIS*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,300&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #5BC5C3;
    --primary-color-rgb: 91, 197, 195;
    --primary-color-rgb-shadow: rgba(var(--primary-color-rgb), 0.6);
    --shadow-color: #439190;
    --hover-color: #4FABA9;
    --dark-color: #252830;
    --second-color: #59A6F7;
    --third-color: #51C481;
    --third-color-rgb: 81, 196, 29;
    --third-color-rgb-shadow: rgba(var(--third-color-rgb), 0.7);
    --contrast-color: #F76459;
    --contrast-dark-color: #CC9D91;
    --white-color: #FFFFFF;
    --gray-light-color: #E5E5E5;
    --title-color: #272C3A;
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.container {
    margin: 0 auto;
    width: 90%;
}

@media all and (min-width: 993px) {
    .container {
        width: 80%;
    }
}

a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1em;
    color: #FFF;
    margin-top: 0;
    margin-bottom: 10px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #FFF;
    margin: 15px 0 15px; 
    padding: 16px;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4em;
    margin: 10px 0 0 0; 
    color: #FFF;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.1;
    color: var(--title-color);
}

p {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: var(--title-color);
}

.btn-container {
    width: 100%;
    text-align: center;
}

a.btn-cta, button.btn-cta {
    background-color: var(--primary-color) !important;
    padding: 10px 30px !important;
    height: auto;
    border-radius: 55px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #FFFFFF;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
    white-space: normal !important;
    border: 0;
}

a.btn-cta:hover, button.btn-cta:hover, .llformCustom > div.button-bar > button.btn-cta:hover {
    background-color: var(--primary-color-rgb-shadow) !important;
    cursor: pointer;
}

/*SEÇÃO DE BARRA DE PRESENTE*/

/* Estilo da Barra */
#gift-bar {
    position: fixed;
    top: -100px; /* Começa escondida fora da tela, acima */
    left: 0;
    width: 100%;
    background-color: #ff6b60;
    /*background-color: #28a745;  Verde chamativo */
    color: white;
    text-align: center;
    padding: 15px 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    z-index: 9999; /* Garante que fique acima de tudo */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: top 0.5s ease-in-out; /* Animação suave de deslizamento */
}

/* Classe que será adicionada pelo Javascript para mostrar a barra */
.show-banner {
    top: 0 !important;
}

/* 1. DOBRA PRINCIPAL (HERO) */
#hero-section {
    background-color: var(--dark-color);
    background-image: url('../base/img/optimized/bgkitvendas2.webp');
    background-size: cover;
    background-position: top center;
    padding: 100px 0 60px 0;
    color: var(--white-color);
    position: relative;
}

#hero-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 175px;
    z-index: 1;
    position: relative;
}

#hero-section .base-triangle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;

    background: linear-gradient(to bottom right, transparent 49.8%, #FFFFFF 50.2%);
    z-index: 0;
}

.hero-content {
    flex: 1.2;
    max-width: 600px;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero-content h3 {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.hero-content h3 strong {
    font-weight: 700;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* 2. TRILHA LÓGICA (STEPS) */
#steps-section {
    padding: 20px 0 100px;
    background-color: var(--bg-light);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2em;
    color: var(--title-color);
    letter-spacing: normal;
    margin: 0 0 80px 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.step-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* 3. AUTORIDADE */
#authority-section {
    padding: 80px 0;
    background-color: var(--dark-color);
    background-image: url('../base/img/optimized/backgroundkitvendas.webp');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
}

.authority-content {
    max-width: 900px;
    margin: 0 auto;
}

#authority-section h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.authority-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--white-color);
    margin-bottom: 50px;
}

.authority-reasons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.reason-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    text-align: left;
    transition: transform 0.3s ease;
}

.reason-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.reason-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.reason-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
    margin-top: 0;
}

.reason-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white-color);
    margin: 0;
}

/* RODAPÉ */
.footer-section {
    background-color: var(--dark-color);
    padding: 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    max-height: 40px;
}

/*FORM*/

.form-container {
    width: calc(50% - 65px);
    max-width: 450px;
    border-radius: 40px;
    overflow: hidden;
    height: 620px;
    max-height: 100%;
    background-color: #F8F8F8;
    -webkit-box-shadow: 8px 12px 20px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 8px 12px 20px 0px rgba(0, 0, 0, 0.35);
    border: 1px solid #b5b5b5;
    box-sizing: border-box;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.form-container ._form_1 {
    width: 100% !important;
}

.form-container .title {
    width: 100%;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    margin: 0;
}

.form-container form {
    margin: 0 !important;
}

.form-container form ._form_element {
    margin-top: 30px !important;
}

.form-container form .field-required {
    color: var(--title-color) !important;
}

.form-container form label {
    color: var(--title-color) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.form-container form input {
    font-family: 'Montserrat', sans-serif !important;
    height: 40px !important;
    padding: 8px !important;
    border-radius: 2px !important;
    border: 1px solid #DDD !important;
}

.form-container ._submit {
    font-family: 'Montserrat', sans-serif !important;
    height: 55px !important;
    font-weight: 700 !important;
}

.form-container form .checkbox label {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
}

.form-container form .checkbox label a {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 700;
    margin-left: 3px;
}

.form-container form .checkbox label input[type="checkbox"] {
    height: 20px;
    width: 20px;
    margin-right: 5px;
    border: 0;
}

.form-container div.field-error {
    color: var(--contrast-color) !important;
}

.form-container ._html-code span {
    width: 100% !important;
    color: var(--title-color) !important;
    display: block;
    text-align: justify;
    font-size: 13px !important;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.05px;
    line-height: 17px;
}

.form-container ._html-code span * {
    color: var(--title-color) !important;
    font-size: 13px !important;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.05px;
    line-height: 17px;
}

/*SEÇÃO DE SEPARAÇÃO*/

/*SEPARADOR DE SEÇÕES*/

.section-separator {
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: -1px;
    text-align: center;
}

.section-separator svg {
    height: 100%;
    
}

.title-separator {
    width: 130px;
    height: 6px;
    border-radius: 4px;
    background-color: var(--title-color);
    margin: 0 auto 30px;
}

/* RESPONSIVIDADE */
@media (max-width: 1400px) {
    #hero-section .container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    #hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .form-container {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Ajuste Responsivo para a seção de Autoridade */
@media (max-width: 768px) {
    .authority-reasons {
        flex-direction: column;
    }
    
    .reason-box {
        text-align: center;
    }
}

@media (max-width: 440px) {
    .form-container {
        padding: 25px;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content h3 {
        font-size: 16px;
    }
    
    .form-container .title {
        font-size: 18px !important;
    }
    
    .form-container form label {
        font-size: 14px !important;
    }
    
    .form-container form ._form_element {
        margin-top: 15px !important;
    }
    
    .step-card h4 {
        font-size: 18px !important;
    }
    
    #authority-section h2 {
        font-size: 24px !important;
    }
    
    .reason-box h4 {
        font-size: 18px !important;
    }
}