/* Hero */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, rgb(248 250 252 / 51%) 0%, rgb(255 255 255 / 97%) 100% 100%), url(../main-mobile.jpg) center / cover no-repeat;
}
@media (min-width: 1024px) {
    .hero { background: linear-gradient(180deg, rgb(248 250 252 / 51%) 0%, rgb(255 255 255 / 97%) 100% 100%), url(../main-desktop.jpg) center / cover no-repeat; }
}
/* Usuários com economia de dados: simplificar o herói */
@media (prefers-reduced-data: reduce) {
    .hero { background: linear-gradient(180deg, rgb(248 250 252 / 51%) 0%, rgb(255 255 255 / 97%) 100% 100%); }
}

.hero-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.hero-brand { display: grid; place-items: center; }
.hero-logo-big { width: min(360px, 70%); height: auto; filter: drop-shadow(0 12px 30px rgba(0,0,0,.15)); opacity: 0.95; }

@media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.hero-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0;

    a {
        flex: 1;
    }
}

.trust-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

/* Eyebrow + badge */
.eyebrow {
    color: var(--brand-700);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e7effb;
    border: 1px solid #d7e4fa;
    padding: 6px 10px;
    border-radius: 999px;
}

.badge-24h {
    display: inline-block;
    background: #1b4274; /* darker for contrast */
    color: #fff;
    font-weight: 800;
    padding: 4px 10px; /* larger touch target */
    border-radius: 999px;
    letter-spacing: 0.5px;
}

/* About */
.about-figure {
    margin: 0;
    text-align: center;
}

.about-figure img {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .07));
    height: auto;
}

.checklist {
    margin: 12px 0 0;
    padding-left: 20px;
}

.checklist li {
    margin: 6px 0;
}

/* Testimonials */
/* Carousel base */
.carousel { position: relative; }
.carousel-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; align-items: stretch; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { flex: 0 0 100%; scroll-snap-align: start; display: flex; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }
.carousel-dot { width: 16px; height: 16px; border-radius: 999px; background: #cbd5e1; border: 0; cursor: pointer; }
.carousel-dot[aria-current="true"] { background: var(--brand); }
.carousel-prev, .carousel-next { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: 1px solid var(--border); width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; box-shadow: var(--shadow); cursor: pointer; }
.carousel-prev { left: -6px; }
.carousel-next { right: -6px; }

/* Testimonial card inside slides */
.testimonial {
    margin: 0;
    padding: 18px 16px 16px 16px;
    border-left: 4px solid var(--brand);
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: -8px;
    left: 10px;
    font-size: 44px;
    line-height: 1;
    color: rgba(33, 78, 138, .15);
    font-weight: 900;
}

.testimonial footer {
    color: var(--muted);
    font-weight: 600;
    margin-top: 8px;
}

.testimonial p { flex: 1; }

@media (min-width: 900px) {
  .carousel-slide { flex-basis: 50%; }
}

/* FAQ */
details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
}

summary {
    cursor: pointer;
    font-weight: 700;
}

details[open] {
    box-shadow: var(--shadow);
}