/* ============================================================
   HOME PAGE — BODY BACKGROUND
   ============================================================ */
body {
    background:
        radial-gradient(1200px 420px at 100% -80px, rgba(47,126,255,.15), transparent 60%),
        radial-gradient(900px 360px at -10% -120px, rgba(11,87,208,.12), transparent 60%),
        #f8fbff;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.08;
    color: #0b1f4d;
    position: relative;
    display: inline-block;
    padding-bottom: .45rem;
    margin-bottom: .15rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1a6cff 0%, #7eb3ff 100%);
    box-shadow: 0 6px 18px rgba(26,108,255,.28);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-full {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: min(82svh, 760px);
    display: flex;
    align-items: center;
    color: #fff;
    background: #071531;
    overflow: hidden;
}

.hero-full::before {
    content: "";
    position: absolute;
    inset: auto -120px -190px auto;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.24), rgba(255,255,255,0) 72%);
    pointer-events: none;
    z-index: 2;
}

.hero-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(4,19,50,.92) 0%, rgba(10,46,118,.80) 44%, rgba(16,86,196,.68) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 42%;
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: min(640px, calc(100% - 2.5rem));
    margin-inline: auto;
    margin-left: clamp(1rem, 7vw, 8rem);
    margin-right: auto;
    padding: clamp(3.5rem, 8vh, 6rem) 0;
    animation: heroFade .65s ease both;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    letter-spacing: .02em;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, .42);
    background: rgba(245, 158, 11, .14);
    border-radius: 999px;
    padding: .35rem .7rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.01em;
    margin-bottom: .8rem;
    max-width: 20ch;
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.hero-lead {
    color: rgba(255,255,255,.95);
    font-size: 1.05rem;
    max-width: 50ch;
    margin-bottom: 1.1rem;
}

.hero-trust {
    margin-top: 1rem;
    color: rgba(255,255,255,.9);
    font-size: .93rem;
}

.hero-contact {
    margin-top: .45rem;
    color: rgba(255,255,255,.9);
    font-size: .92rem;
}

.hero-contact a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
}

.hero-actions .btn {
    border-radius: .72rem;
    font-weight: 700;
}

.hero-divider {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    height: 20px;
    position: relative;
    transform: translateY(-10px);
    z-index: 2;
    pointer-events: none;
}

.hero-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(11,87,208,0), rgba(11,87,208,.28), rgba(11,87,208,0));
    transform: translateY(-50%);
}

.hero-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 160px;
    height: 16px;
    background: radial-gradient(ellipse at center, rgba(47,126,255,.22) 0%, rgba(47,126,255,0) 70%);
    transform: translate(-50%, -50%);
    filter: blur(4px);
}

.hero-highlights {
    margin-top: 1rem;
    display: grid;
    gap: .35rem;
    max-width: 52ch;
}

.hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: rgba(255,255,255,.95);
    font-size: .94rem;
}

.hero-highlights i { margin-top: .1rem; }

/* ============================================================
   PROCESS CARDS (Como funciona)
   ============================================================ */
.process-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.15rem 1.05rem;
    box-shadow: 0 8px 20px rgba(18,40,88,.05);
    height: 100%;
}

.process-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--brand-500), var(--brand-700));
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: .7rem;
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.process-card p {
    color: var(--ink-500);
    margin: 0;
    font-size: .92rem;
}

/* ============================================================
   FAQ CARDS
   ============================================================ */
.faq-card {
    border-radius: .95rem;
    border: 1px solid var(--line);
    background: #fff;
    padding: 1.05rem;
    height: 100%;
}

.faq-q { font-weight: 800; margin-bottom: .35rem; }
.faq-a { color: var(--ink-500); margin: 0; font-size: .93rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    border-radius: 1.15rem;
    background: linear-gradient(135deg, rgba(10,64,164,.95) 0%, rgba(20,101,232,.95) 62%, rgba(47,126,255,.95) 100%);
    color: #fff;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.final-cta h2 {
    font-weight: 900;
    letter-spacing: -.02em;
}

/* ============================================================
   HIGHLIGHT CARDS (restaurantes populares)
   ============================================================ */
.highlight-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5edff !important;
    box-shadow: 0 10px 26px rgba(18,40,88,.08);
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(18,40,88,.14);
}

.highlight-card .media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.highlight-card .media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.highlight-card .chip {
    position: absolute;
    top: .65rem;
    left: .65rem;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.6);
    background: rgba(0,0,0,.35);
    color: #fff;
    font-size: .72rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    backdrop-filter: blur(2px);
}

.highlight-card .card-body {
    padding: 1rem 1rem .65rem;
}

.highlight-card .title {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.22;
    margin-bottom: .45rem;
    color: #0f172a;
}

.highlight-card .meta {
    color: var(--ink-500);
    font-size: .85rem;
}

.highlight-card .meta i { color: #2f7eff; }

.highlight-card .card-footer {
    padding: .25rem 1rem 1rem;
}

.highlight-card .btn { font-weight: 600; }

.highlight-card .card-link-hit {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-grid .col { display: flex; }

.category-card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 280px;
    border: none;
    background: #000;
    transition: transform .25s ease, box-shadow .25s ease;
}

@media (min-width: 992px) {
    .category-card { height: 320px; }
}

.category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 1rem 2.5rem rgba(13,110,253,.25);
}

.category-card .media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.category-card .media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.75) saturate(1.15);
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.category-card:hover .media > img { transform: scale(1.08); }

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.1) 45%, rgba(0,0,0,0));
}

.category-card .content {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.category-card .icon-bubble {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    backdrop-filter: blur(3px);
    font-size: 1.25rem;
}

.category-card .title {
    margin: 0;
    font-weight: 800;
    line-height: 1.1;
    font-size: 1.25rem;
}

.category-card .subtitle {
    margin: 0;
    opacity: .9;
    font-size: 1rem;
    font-weight: 400;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 575.98px) {
    .hero-title { font-size: 1.7rem; line-height: 1.1; }
    .hero-lead { font-size: 1rem; }
    .final-cta { padding: 1.4rem; }

    .hero-inner {
        width: calc(100% - 2rem);
        margin-left: auto;
        margin-right: auto;
        padding: 3rem 0;
    }

    .hero-full { min-height: min(72svh, 600px); }
    .hero-bg img { object-position: center 40%; }
    .hero-divider { transform: translateY(-6px); }

    .hero-eyebrow {
        font-size: .74rem;
        margin-bottom: .8rem;
    }

    .hero-trust,
    .hero-contact { font-size: .88rem; }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: .55rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        padding: .72rem .95rem !important;
        font-size: .96rem;
        line-height: 1.2;
        justify-content: center;
    }

    .process-card,
    .faq-card {
        border-radius: .85rem;
        padding: .95rem;
    }

    .highlight-card { border-radius: .9rem; }
    .highlight-card .title { font-size: 1rem; }
    .highlight-card .meta { font-size: .82rem; }
    .highlight-card .card-body { padding: .88rem .88rem .55rem; }
    .highlight-card .card-footer { padding: .2rem .88rem .88rem; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-full { min-height: min(84svh, 700px); }

    .section-title {
        font-size: 1.28rem;
        padding-bottom: .38rem;
    }

    .section-title::after {
        width: 58px;
        height: 2.5px;
    }

    .container.py-4 {
        padding-top: var(--section-gap) !important;
        padding-bottom: var(--section-gap) !important;
    }
}

@media (min-width: 992px) {
    .container.py-4 {
        padding-top: 1.6rem !important;
        padding-bottom: 1.6rem !important;
    }

    .section-title { font-size: 1.52rem; }
}
