/* =========================================================
   CONFIGURAÇÕES
========================================================= */

:root {

    --primary: #087cf0;
    --primary-dark: #0666ca;
    --primary-light: #eaf5ff;

    --navy: #102c46;
    --navy-dark: #091f32;

    --text: #23384a;
    --text-light: #637586;

    --white: #ffffff;

    --background: #f6f9fc;

    --border: #dce5ed;

    --radius: 14px;

    --shadow:
        0 18px 45px rgba(15, 47, 76, 0.10);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

}


a {

    text-decoration: none;

}


button,
input,
select {

    font: inherit;

}


.container {

    width: min(
        1120px,
        calc(100% - 40px)
    );

    margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: auto;
    height: 42px;
}

.header {

    background:
        rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid var(--border);

    position: sticky;

    top: 0;

    z-index: 100;

}


.header-content {

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    font-size: 27px;

    font-weight: 700;

    letter-spacing: -1px;

}


.logo-e {

    color: var(--primary);

}


.logo-renave {

    color: var(--navy);

}


/* =========================================================
   BOTÕES
========================================================= */

.btn {

    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 24px;

    border-radius: 9px;

    border: none;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;

}


.btn-primary {

    background: var(--primary);

    color: var(--white);

}


.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-1px);

}


.btn-outline {

    color: var(--primary);

    border:
        1px solid var(--primary);

    background: transparent;

}


.btn-outline:hover {

    background:
        var(--primary-light);

}

.btn-whatsapp {
    color: #25d366;
    border: 1px solid #25d366;
    background: transparent;
}

.btn-whatsapp:hover {
    color: #1ebe5d;
    border-color: #1ebe5d;
    background: rgba(37, 211, 102, 0.08);
}


.btn-full {

    width: 100%;

}


.btn-guide {

    min-height: 54px;

    margin-top: 5px;

    font-size: 14px;

    letter-spacing: 0.3px;

}


.btn-white {

    background: var(--white);

    color: var(--primary);

    min-height: 52px;

}


.btn-white:hover {

    transform: translateY(-2px);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    padding: 75px 0 85px;

    background:

        radial-gradient(
            circle at 15% 20%,
            rgba(8, 124, 240, 0.07),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 20%,
            rgba(8, 124, 240, 0.10),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f6faff 100%
        );

}


.hero-content {

    display: grid;

    grid-template-columns:
        1fr 465px;

    gap: 85px;

    align-items: center;

}

.tag,
.section-tag {

    display: inline-block;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 18px;

}


.hero h1 {

    max-width: 620px;

    color: var(--navy);

    font-size:
        clamp(
            44px,
            5vw,
            65px
        );

    line-height: 1.04;

    letter-spacing: -2.5px;

    margin-bottom: 23px;

}


.hero h1 span {

    color: var(--primary);

}


.hero-description {

    max-width: 630px;

    color: var(--text-light);

    font-size: 19px;

    margin-bottom: 28px;

}


.hero-highlight {

    max-width: 580px;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 17px 19px;

    background:
        rgba(255, 255, 255, 0.75);

    border:
        1px solid #d9eaf8;

    border-radius: 12px;

}


.hero-highlight-icon {

    min-width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-weight: bold;

}


.hero-highlight strong {

    display: block;

    color: var(--navy);

    margin-bottom: 2px;

}


.hero-highlight p {

    color: var(--text-light);

    font-size: 14px;

}


.hero-benefits {

    list-style: none;

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 25px;

}


.hero-benefits li {

    color: var(--text);

    font-size: 14px;

    font-weight: 600;

}


.hero-benefits span {

    color: var(--primary);

    margin-right: 5px;

}


/* =========================================================
   FORMULÁRIO
========================================================= */

.form-card {

    background: var(--white);

    padding: 35px;

    border:
        1px solid rgba(15, 65, 105, 0.08);

    border-radius: var(--radius);

    box-shadow:
        0 22px 60px
        rgba(15, 47, 76, 0.14);

}


.hero-form {

    position: relative;

}


.hero-form::before {

    content: "";

    position: absolute;

    top: 0;

    left: 35px;

    right: 35px;

    height: 4px;

    border-radius:
        0 0 5px 5px;

    background:
        linear-gradient(
            90deg,
            #087cf0,
            #33b7f3
        );

}


.form-header {

    margin-bottom: 25px;

}


.form-badge {

    display: inline-block;

    padding: 5px 9px;

    margin-bottom: 12px;

    border-radius: 5px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.form-header h2 {

    color: var(--navy);

    font-size: 25px;

    line-height: 1.2;

    margin-bottom: 7px;

}


.form-header p {

    color: var(--text-light);

    font-size: 14px;

}


.form-group {

    margin-bottom: 15px;

}


.form-group label {

    display: block;

    color: var(--text);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 6px;

}


.form-group input,
.form-group select {

    width: 100%;

    height: 47px;

    padding: 0 14px;

    border:
        1px solid var(--border);

    border-radius: 8px;

    background: var(--white);

    color: var(--text);

    outline: none;

    transition: 0.2s;

}


.form-group input:focus,
.form-group select:focus {

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(8, 124, 240, 0.10);

}


.form-security {

    display: flex;

    justify-content: center;

    align-items: flex-start;

    gap: 7px;

    margin-top: 14px;

    color: #80909e;

    font-size: 10px;

    line-height: 1.4;

}


.form-security span {

    font-size: 11px;

}


/* =========================================================
   SEÇÕES
========================================================= */

.section {

    padding: 90px 0;

}


.section-heading {

    max-width: 690px;

    margin:
        0 auto 50px;

    text-align: center;

}


.section-heading h2,
.process-copy h2 {

    color: var(--navy);

    font-size: 38px;

    line-height: 1.15;

    letter-spacing: -1px;

    margin-bottom: 17px;

}


.section-heading p {

    color: var(--text-light);

    font-size: 17px;

}


/* =========================================================
   CARDS
========================================================= */

.guide-benefits-section {

    background: var(--white);

}


.cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.info-card {

    padding: 34px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--white);

    transition: 0.2s;

}


.info-card:hover {

    box-shadow:
        var(--shadow);

    transform:
        translateY(-3px);

}


.card-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 26px;

    border-radius: 11px;

    background:
        var(--primary-light);

    color:
        var(--primary);

    font-size: 12px;

    font-weight: 800;

}


.info-card h3 {

    color: var(--navy);

    font-size: 21px;

    margin-bottom: 11px;

}


.info-card p {

    color:
        var(--text-light);

}


/* =========================================================
   PROCESSO
========================================================= */

.process-section {

    padding:
        100px 0;

    background:
        var(--background);

}


.process-content {

    display: grid;

    grid-template-columns:
        430px 1fr;

    gap: 100px;

    align-items: center;

}


.guide-area {

    display: flex;

    justify-content: center;

}


.guide-preview {
    width: 330px;
    min-height: 440px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf7ff
        );

    border: 1px solid #d4e7f6;
    border-left: 7px solid var(--primary);

    border-radius: 8px;

    box-shadow:
        0 25px 55px
        rgba(15, 47, 76, 0.15);

    /* Removemos a inclinação */
    transform: none;

    position: relative;
}


/* Não precisamos mais da faixa criada com ::before */
.guide-preview::before {
    display: none;
}


.guide-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.guide-small {
    color: var(--navy);
    font-weight: 800;
}


.guide-free {
    color: var(--primary);

    font-size: 9px;
    font-weight: 800;
}


.guide-document-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 65px 0 28px;

    border-radius: 14px;

    background: var(--primary);
    color: var(--white);

    font-size: 23px;
}


.guide-preview h3 {
    color: var(--navy);

    font-size: 26px;
    line-height: 1.18;

    margin: 0;
}


.guide-preview h4 {
    color: var(--primary);

    font-size: 30px;
    line-height: 1.2;

    margin: 8px 0 0;
}


.guide-preview > p {
    color: var(--text-light);

    font-size: 14px;
    line-height: 1.5;

    margin: 15px 0 0;
}


/* Agora fica no fluxo normal do documento */
.guide-bottom {
    margin-top: auto;
    padding-top: 30px;

    position: static;
}


.guide-bottom div {
    width: 45px;
    height: 3px;

    margin-bottom: 10px;

    background: var(--primary);
}


.guide-bottom strong {
    color: var(--navy);

    font-size: 11px;
}


.process-copy > p {

    color: var(--text-light);

    font-size: 16px;

    margin-bottom: 15px;

}


.process-steps {

    margin:
        30px 0;

}


.process-step {

    display: flex;

    gap: 16px;

    align-items: flex-start;

    margin-bottom: 20px;

}


.process-step > span {

    min-width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

}


.process-step strong {

    color: var(--navy);

}


.process-step p {

    color: var(--text-light);

    font-size: 14px;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: var(--white);

}


.faq-container {

    max-width: 850px;

}


.faq-list {

    border-top:
        1px solid var(--border);

}


.faq-item {

    border-bottom:
        1px solid var(--border);

}


.faq-item summary {

    padding:
        21px 5px;

    cursor: pointer;

    color: var(--navy);

    font-size: 16px;

    font-weight: 700;

}


.faq-item p {

    padding:
        0 5px 23px;

    color: var(--text-light);

}


/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {

    padding:
        80px 0;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(50, 183, 243, 0.28),
            transparent 30%
        ),

        var(--primary);

}


.final-cta-content {

    text-align: center;

    color: var(--white);

}


.final-tag {

    display: inline-block;

    margin-bottom: 14px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

    opacity: 0.85;

}


.final-cta h2 {

    font-size: 38px;

    line-height: 1.15;

    margin-bottom: 12px;

}


.final-cta p {

    max-width: 570px;

    margin:
        0 auto 27px;

    opacity: 0.9;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        48px 0;

    background:
        var(--navy-dark);

    color:
        #8da2b4;

}


.footer-content {

    text-align: center;

}


.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    margin-bottom: 14px;

    background: #ffffff;

    border-radius: 8px;
}

.footer-logo img {
    display: block;

    width: auto;
    height: 38px;
}


.footer-disclaimer {

    max-width:
        680px;

    margin:
        18px auto 0;

    font-size:
        12px;

    line-height:
        1.5;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 950px) {

    .hero-content {

        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 680px;

    }


    .hero-text {

        text-align: center;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-highlight {

        margin-left: auto;

        margin-right: auto;

        text-align: left;

    }


    .hero-benefits {

        justify-content: center;

    }


    .process-content {

        grid-template-columns: 1fr;

        gap: 60px;

        max-width: 680px;

    }

}



@media (max-width: 700px) {

    .cards {

        grid-template-columns: 1fr;

    }

}



@media (max-width: 600px) {

    .container {

        width:
            min(
                100% - 28px,
                1120px
            );

    }


    .header-content {

        height: 67px;

    }


    .header .btn {

        min-height: 39px;

        padding:
            0 14px;

        font-size:
            13px;

    }


    .hero {

        padding:
            45px 0 65px;

    }


    .hero h1 {

        font-size:
            41px;

        letter-spacing:
            -1.5px;

    }


    .hero-description {

        font-size:
            17px;

    }


    .hero-benefits {

        flex-direction:
            column;

        gap:
            7px;

    }


    .form-card {

        padding:
            29px 20px;

    }


    .hero-form::before {

        left:
            20px;

        right:
            20px;

    }


    .section,
    .process-section {

        padding:
            70px 0;

    }


    .section-heading h2,
    .process-copy h2 {

        font-size:
            31px;

    }


    .guide-preview {

        width:
            290px;

        min-height:
            400px;

    }


    .final-cta {

        padding:
            65px 0;

    }


    .final-cta h2 {

        font-size:
            31px;

    }

}


/* =========================================================
   PÁGINA DE OBRIGADO
========================================================= */

.thank-you-page {
    min-height: calc(100vh - 76px);
    display: grid;
    place-items: center;
    padding: 70px 20px;
    background:
        radial-gradient(circle at 15% 20%, rgba(8, 124, 240, 0.07), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(8, 124, 240, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.thank-you-card {
    width: min(100%, 620px);
    padding: 48px 40px;
    border: 1px solid rgba(15, 65, 105, 0.08);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.thank-you-card h1 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: clamp(38px, 6vw, 52px);
    line-height: 1.08;
}

.thank-you-card > p {
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: 18px;
}

.thank-you-help {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.thank-you-help p {
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 700;
}

.thank-you-help .btn {
    width: 100%;
}

.thank-you-config-message {
    margin-top: 12px;
    color: var(--text-light);
    font-size: 13px;
}

@media (max-width: 600px) {
    .thank-you-page {
        min-height: calc(100vh - 67px);
        padding: 45px 14px;
    }

    .thank-you-card {
        padding: 38px 22px;
    }
}


.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


.form-message {
    margin-top: 12px;
    color: #b42318;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.field-error[hidden] {
    display: none;
}

.form-group input.is-invalid,
.form-group select.is-invalid {
    border-color: #d92d20;
}

.form-group input.is-invalid:focus,
.form-group select.is-invalid:focus {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}
