/* ============================
   RESET & BASE
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: #111;
    font-weight: 700;
}

p {
    color: #555;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   LOGO TOPO
============================ */
.elev-logo-top {
    position: fixed;
    top: 18px;
    left: 26px;
    z-index: 50;
}

.elev-logo-top img {
    height: 44px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
    user-select: none;
}

/* ============================
   HERO
============================ */
.hero {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5eb, #ffffff);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(253,112,20,0.17), transparent 55%),
        radial-gradient(circle at bottom right, rgba(253,172,20,0.24), transparent 70%);
    z-index: 1;
}

/* fade suave para a próxima seção */
.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        to bottom,
        rgba(255,245,235,0.7),
        rgba(255,245,235,0.3),
        transparent
    );
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 52px;
}

.hero-content {
    flex: 1;
    max-width: 540px;
}

.hero-tag {
    font-size: 11px;
    color: #fd7014;
    text-transform: uppercase;
    background: rgba(253,112,20,0.08);
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 18px;
    margin-bottom: 26px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.hero-safe {
    font-size: 14px;
    color: #555;
}

.hero-micro {
    font-size: 13px;
    color: #777;
}

/* HERO VISUAL */
.hero-visual {
    flex: 1;
    min-height: 260px;
    position: relative;
}

.hero-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: rgba(255,255,255,0.92);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.hero-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fd7014;
}

.hero-logo-text {
    text-transform: uppercase;
    color: #111;
}

.hero-card {
    position: absolute;
    top: 80px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 26px;
    padding: 26px 28px;
    box-shadow: 0 20px 44px rgba(0,0,0,0.12);
}

.hero-card-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-card ul {
    list-style: none;
    font-size: 14px;
    color: #555;
}

.hero-card li {
    margin-bottom: 8px;
}

.hero-card li::before {
    content: "• ";
    color: #fd7014;
}

/* órbitas de luz */
.hero-orbit {
    position: absolute;
    border-radius: 999px;
    filter: blur(26px);
    opacity: 0.75;
    animation: float 7s ease-in-out infinite alternate;
}

.hero-orbit-1 {
    width: 240px;
    height: 240px;
    background: rgba(253,112,20,0.45);
    top: 150px;
    right: -80px;
}

.hero-orbit-2 {
    width: 190px;
    height: 190px;
    background: rgba(255,180,50,0.35);
    top: -10px;
    right: 150px;
    animation-duration: 9s;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(22px); }
}

/* ============================
   BOTÕES
============================ */
.btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 999px;
    padding: 13px 26px;
    font-size: 15px;
}

.btn-primary {
    background: #fd7014;
    color: #fff;
    box-shadow: 0 10px 24px rgba(253,112,20,0.36);
    transition: all 0.22s ease;
}

.btn-primary:hover {
    background: #e35f0f;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(253,112,20,0.45);
}

.btn-outline {
    background: #fff;
    color: #fd7014;
    border: 2px solid #fd7014;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    background: #fd7014;
    color: #fff;
}

/* ============================
   SEÇÕES GENÉRICAS
============================ */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 16px;
    color: #666;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

/* ============================
   O QUE É O CONSIGNADO
============================ */
.section-what {
    background: linear-gradient(180deg, #fff7f0 0%, #ffffff 100%);
}

.cards-row {
    margin-top: 40px;
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
}

.card-box {
    background: #fff;
    padding: 30px 26px;
    border-radius: 22px;
    width: 300px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    transition: all 0.22s ease;
    text-align: left;
}

.card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.card-emoji {
    font-size: 28px;
    display: inline-block;
    margin-bottom: 10px;
}

.card-box h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

/* ============================
   SIMULADOR
============================ */
.section-simulador {
    background: #fdf7f3;
}

.simulador-box {
    margin-top: 34px;
    background: #fff;
    border-radius: 26px;
    padding: 32px 30px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 16px 34px rgba(0,0,0,0.09);
}

.simulador-label {
    display: block;
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
}

.simulador-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.simulador-input {
    flex: 1;
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fff;
}

.simulador-input:focus {
    outline: none;
    border-color: #fd7014;
    box-shadow: 0 0 0 3px rgba(253,112,20,0.25);
}

.simulador-resultado {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* ============================
   COMO FUNCIONA
============================ */
.section-steps {
    background: #ffffff;
}

.steps-grid {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.step-card {
    background: #fff;
    width: 250px;
    border-radius: 22px;
    padding: 26px 22px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.07);
    text-align: left;
    transition: all 0.22s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.11);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fd7014;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 34px;
    margin-bottom: 14px;
}

.step-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

/* ============================
   FORMULÁRIO
============================ */
.section-form {
    background: #fafafa;
}

.form-card {
    background: #fff;
    border-radius: 26px;
    padding: 38px 32px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 16px 36px rgba(0,0,0,0.09);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 10px;
}

.form-card .section-sub {
    margin-bottom: 20px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.form-grid input {
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.form-grid input:focus {
    outline: none;
    border-color: #fd7014;
    box-shadow: 0 0 0 3px rgba(253,112,20,0.22);
}

.lgpd {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.lgpd input {
    margin-top: 3px;
}

.lgpd a {
    color: #fd7014;
    text-decoration: none;
}

.form-btn {
    width: 100%;
    margin-top: 4px;
}

.form-disclaimer {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}

/* ============================
   FAQ
============================ */
.section-faq {
    background: #ffffff;
}

.faq-list {
    margin-top: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list details {
    margin-bottom: 12px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-list details:hover {
    transform: translateY(-3px);
}

.faq-list summary {
    font-weight: 600;
    font-size: 15px;
    color: #222;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "⌄";
    float: right;
    font-size: 18px;
    color: #888;
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(180deg);
}

.faq-list p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* ============================
   FOOTER
============================ */
.footer {
    background: #fff;
    padding: 46px 0 40px;
    margin-top: 40px;
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 4px;
    filter: drop-shadow(0 3px 7px rgba(0,0,0,0.10));
}

.footer-brand p {
    font-size: 14px;
    color: #777;
}

.footer-main p {
    margin-bottom: 4px;
    font-size: 14px;
}

.footer-links {
    margin: 12px 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    font-size: 14px;
    color: #fd7014;
    text-decoration: none;
}

.footer-disclaimer {
    font-size: 12px;
    color: #777;
    max-width: 680px;
    margin: 10px auto 0;
    line-height: 1.45;
}

/* ============================
   RESPONSIVO
============================ */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-card {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 30px;
    }

    .hero-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }

    .elev-logo-top {
        position: absolute;
    }
}

@media (max-width: 768px) {
    .cards-row {
        flex-direction: column;
        align-items: center;
    }

    .card-box,
    .step-card {
        width: 100%;
        max-width: 360px;
    }

    .simulador-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .form-card {
        padding: 30px 22px;
    }

    .footer-links {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .elev-logo-top img {
        height: 36px;
    }
}

/* --- Ajuste da logo do topo ELEV (override suave) --- */
.elev-logo-top {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 24px 32px;
}

.elev-logo-top img {
    width: 48px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ============================
   BOTÃO FLUTUANTE WHATSAPP
============================ */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    z-index: 60;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0,0,0,0.30);
    background: #1ebe5b;
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}
