/* ================= PÁGINA OFERTE-SE ================= */

body {
    background: #f3f1ed;
}


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

.oferte-hero {
    position: relative;
    height: 520px;
    margin-top: 85px;

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

    background: #0e0c2a;


    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.oferte-hero::before {
    content: "";
    position: absolute;

    width: 780px;
    height: 500px;

    border: 7px solid #d87516;
    border-radius: 48% 52% 42% 58%;

    top: -220px;
    right: -80px;

    transform: rotate(-8deg);
    opacity: 0.9;
}

.oferte-hero::after {
    content: "";
    position: absolute;

    width: 600px;
    height: 240px;

    border-bottom: 7px solid #d87516;
    border-radius: 50%;

    left: -120px;
    bottom: -70px;

    transform: rotate(8deg);
    opacity: 0.8;
}

.oferte-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.oferte-hero-content h1 {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 76px;
    line-height: 1;
    font-weight: 600;
}

/* ================= MAIN ================= */

.oferte-main {
    max-width: 1250px;
    margin: auto;
    padding: 90px 20px;
}


/* ================= INTRO ================= */

.oferte-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;

    margin-bottom: 70px;
}

.section-tag,
.form-tag {
    display: inline-block;

    margin-bottom: 14px;
    padding: 8px 16px;

    background: rgba(216, 117, 22, 0.13);
    color: #d87516;

    border-radius: 999px;

    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-text h2 {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    color: #0e0c2a;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.15;
}

.intro-text p {
    margin-bottom: 16px;

    color: #4b4b4b;
    font-size: 18px;
    line-height: 1.8;
}

.versiculo-card {
    position: relative;

    padding: 38px;
    border-radius: 28px;

    background: #0e0c2a;
    color: white;

    box-shadow: 0 20px 50px rgba(14, 12, 42, 0.22);
}

.versiculo-card span {
    position: absolute;
    top: 10px;
    left: 26px;

    color: #d87516;
    font-size: 90px;
    line-height: 1;
    opacity: 0.45;
}

.versiculo-card p {
    position: relative;
    z-index: 1;

    margin: 20px 0;
    font-size: 18px;
    line-height: 1.8;
}

.versiculo-card strong {
    color: #f6b26b;
}


/* ================= CONTEÚDO ================= */

.oferte-content {
    display: flex;
    justify-content: center;
}


.submit-btn {
    width: 100%;
    padding: 15px 22px;

    border: none;
    border-radius: 14px;

    background: #d87516;
    color: white;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #bd6411;
    transform: translateY(-2px);
}


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

.form-area {
    width: 100%;
    max-width: 700px;
}

.oferte-form {
    background: white;

    padding: 42px;
    border-radius: 30px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.oferte-form h2 {
    margin: 0 0 10px;

    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    color: #0e0c2a;
    font-size: 36px;
    font-weight: 500;
}

.form-description {
    margin-bottom: 28px;

    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;

    margin-bottom: 8px;

    color: #0e0c2a;
    font-weight: bold;
    font-size: 15px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d6d6d6;
    border-radius: 13px;

    background: #fafafa;
    color: #222;

    font-size: 15px;
    outline: none;

    transition: 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #d87516;
    background: white;
    box-shadow: 0 0 0 4px rgba(216, 117, 22, 0.12);
}

.input-group textarea {
    height: 110px;
    resize: none;
}

.submit-btn {
    margin-top: 10px;
}

.form-message {
    min-height: 22px;
    margin-top: 18px;

    font-weight: bold;
}


/* ================= AVISO ================= */

.oferte-aviso {
    display: flex;
    gap: 20px;
    align-items: flex-start;

    margin-top: 60px;
    padding: 30px;

    background: #fff8ef;
    border-left: 6px solid #d87516;
    border-radius: 22px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.aviso-icon {
    min-width: 45px;
    height: 45px;

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

    background: #d87516;
    color: white;

    border-radius: 50%;

    font-size: 24px;
    font-weight: bold;
}

.oferte-aviso h3 {
    margin: 0 0 8px;

    color: #0e0c2a;
    font-size: 22px;
}

.oferte-aviso p {
    margin: 0;

    color: #555;
    font-size: 16px;
    line-height: 1.7;
}


/* Rodapé unificado herdado de style.css */


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

@media (max-width: 950px) {
    .oferte-hero-content h1 {
        font-size: 56px;
    }

    .oferte-intro {
        grid-template-columns: 1fr;
    }

    .versiculo-card {
        max-width: 100%;
    }
}

@media (max-width: 650px) {
    .oferte-hero {
        height: 460px;
    }

    .oferte-hero-content h1 {
        font-size: 44px;
    }

    .oferte-hero-content p {
        font-size: 17px;
    }

    .oferte-main {
        padding: 60px 16px;
    }

    .intro-text h2 {
        font-size: 32px;
    }

    .oferte-form {
        padding: 28px 22px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .oferte-aviso {
        flex-direction: column;
    }
}