/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1009;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   CUSTOM PROPERTIES
=========================== */
:root {
    --bg-main:      #1a1009;
    --bg-section:   #1e1409;
    --bg-alt:       #221609;
    --bg-card:      #2a1c0d;
    --bg-card-dark: #241608;
    --gold:         #c9a336;
    --green:        #3dca5f;
    --green-hover:  #32b350;
    --white:        #ffffff;
    --text-muted:   #cccccc;
    --text-faint:   #999999;
    --red:          #d94f4f;
    --orange:       #d97a2a;
    --radius:       10px;
    --radius-lg:    14px;
}

/* ===========================
   UTILITIES
=========================== */
.container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}

.section__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 32px;
}

.section__subtitle--gold {
    text-align: center;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.section__cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.section__hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 60px 0;
}

/* ===========================
   BUTTONS
=========================== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
}

.btn-whatsapp:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
}

.btn-whatsapp--outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--white);
}

.btn-whatsapp--outline:hover {
    background: var(--green);
}

/* ===========================
   LOGO
=========================== */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.logo__shield {
    flex-shrink: 0;
}

.logo__text {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
}

/* ===========================
   HERO
=========================== */
.hero {
    background: var(--bg-main);
    padding: 60px 0 80px;
}

.hero__inner {
    text-align: center;
}

.hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero > .container > .btn-whatsapp {
    margin-bottom: 48px;
}

/* Info Box */
.info-box {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    margin-top: 48px;
}

.info-box__left {
    padding: 36px 32px;
}

.info-box__left p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.info-box__left strong {
    color: var(--gold);
    font-weight: 700;
}

.info-box__icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
    fill: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.info-box__divider {
    background: rgba(255,255,255,0.1);
    width: 1px;
}

.info-box__right {
    padding: 36px 32px;
}

.info-box__label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Problem List */
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.problem-list__x {
    color: var(--red);
    font-weight: 700;
    font-size: 0.7rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: rgba(217, 79, 79, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Warning Box */
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(217, 122, 42, 0.1);
    border: 1px solid rgba(217, 122, 42, 0.25);
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 8px;
}

.warning-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.warning-box__icon {
    width: 1rem;
    height: 1rem;
    fill: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===========================
   SERVICES
=========================== */
.services {
    background: var(--bg-section);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    transition: background 0.2s;
}

.service-card:hover {
    background: #321f0e;
}

.service-card i {
    font-size: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* ===========================
   ATUAÇÃO
=========================== */
.atuacao {
    background: var(--bg-main);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}

.feature-card i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Excellence */
.excellence {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.excellence__icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.excellence__icon-wrap i {
    font-size: 1.6rem;
    color: var(--gold);
}

.excellence__label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-card__number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-faint);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===========================
   PARA QUEM
=========================== */
.para-quem {
    background: var(--bg-section);
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.audience-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
}

.audience-card:hover {
    background: #321f0e;
}

.audience-card i {
    font-size: 1.6rem;
    color: var(--gold);
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===========================
   CTA STRIP
=========================== */
.cta-strip {
    background: var(--bg-main);
    padding: 40px 0;
}

.cta-strip__inner {
    display: flex;
    justify-content: center;
}

/* ===========================
   QUEM SOMOS
=========================== */
.quem-somos {
    background: var(--bg-alt);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 0;
}

.about__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    aspect-ratio: 3/4;
    max-height: 420px;
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about__content p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about__subtitle {
    color: var(--gold) !important;
    font-weight: 700 !important;
    margin-top: 8px !important;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about__list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.about__list strong {
    color: var(--white);
}

.about__list u {
    color: var(--gold);
}

/* ===========================
   COMO FUNCIONA
=========================== */
.como-funciona {
    background: var(--bg-card-dark);
    position: relative;
}

.como-funciona::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,6,2,0.7) 0%, rgba(30,20,8,0.5) 100%);
    pointer-events: none;
}

.como-funciona .container {
    position: relative;
    z-index: 1;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.step__number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
}

.step__card {
    background: rgba(42, 28, 13, 0.85);
    border-radius: var(--radius);
    padding: 20px 18px;
    text-align: center;
    width: 100%;
}

.step__card p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.55;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
    background: var(--bg-section);
}

.testimonials__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.testimonials__score {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
}

.testimonials__stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonials__source {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-top: 4px;
    margin-bottom: 40px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 2px;
}

.stars-sm {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testimonial-card__quote {
    font-size: 2rem;
    color: var(--gold);
    line-height: 0.5;
    display: block;
    margin-bottom: 8px;
    opacity: 0.6;
}

.testimonial-card__text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

/* ===========================
   FAQ
=========================== */
.faq {
    background: var(--bg-main);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 780px;
    margin: 0 auto;
}

.faq__item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    text-align: left;
    transition: background 0.15s;
}

.faq__question:hover {
    background: rgba(255,255,255,0.04);
}

.faq__chevron {
    font-size: 0.75rem;
    color: var(--text-faint);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq__item.is-open .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq__item.is-open .faq__answer {
    max-height: 400px;
    padding: 0 22px 18px;
}

.faq__answer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 14px;
}

/* ===========================
   FINAL CTA
=========================== */
.final-cta {
    background: linear-gradient(180deg, #221408 0%, #1a1009 100%);
    padding: 80px 0;
}

.final-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.final-cta__title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    max-width: 600px;
}

.final-cta__highlight {
    color: var(--gold);
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: #110c05;
    padding: 48px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__col p {
    font-size: 0.82rem;
    color: var(--text-faint);
    line-height: 1.8;
}

.footer__icon {
    margin-right: 8px;
    color: var(--text-faint);
    fill: var(--text-faint);
    width: 0.85rem;
    height: 0.85rem;
    vertical-align: middle;
}

.footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border-radius: 8px;
    color: var(--text-muted);
    fill: var(--text-muted);
    transition: background 0.2s, color 0.2s, fill 0.2s;
}

.footer__social:hover {
    background: var(--gold);
    color: var(--white);
    fill: var(--white);
}

.footer__bottom {
    padding: 20px 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: var(--text-faint);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    fill: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(61, 202, 95, 0.35);
    z-index: 999;
    transition: background 0.2s, transform 0.15s;
}

.whatsapp-float:hover {
    background: var(--green-hover);
    transform: scale(1.08);
}

/* ===========================
   SVG ICONS
=========================== */
.icon-svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: middle;
    flex-shrink: 0;
}

.btn-whatsapp .icon-svg {
    width: 1.15rem;
    height: 1.15rem;
}

.whatsapp-float .icon-svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer__social .icon-svg {
    width: 1rem;
    height: 1rem;
}

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

/* Subtítulo do hero (novo elemento entre h1 e botão) */
.hero__subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

/* Subtítulo do CTA final */
.final-cta__subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 480px;
    text-align: center;
    line-height: 1.7;
    margin-top: -12px;
}

/* ===========================
   PERFORMANCE
=========================== */
.faq {
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

.final-cta {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .section__title { font-size: 1.6rem; }
    .hero__title    { font-size: 1.75rem; }

    .info-box {
        grid-template-columns: 1fr;
    }
    .info-box__divider {
        width: 100%;
        height: 1px;
    }

    .services__grid        { grid-template-columns: 1fr; }
    .features__grid        { grid-template-columns: 1fr; }
    .stats__grid           { grid-template-columns: repeat(3, 1fr); }
    .audience__grid        { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid    { grid-template-columns: 1fr; }
    .steps__grid           { grid-template-columns: repeat(2, 1fr); }
    .about__grid           { grid-template-columns: 1fr; }
    .footer__grid          { grid-template-columns: 1fr; gap: 28px; }

    .final-cta__title { font-size: 1.35rem; }
}

@media (max-width: 480px) {
    .stats__grid    { grid-template-columns: 1fr; }
    .audience__grid { grid-template-columns: 1fr; }
    .steps__grid    { grid-template-columns: 1fr; }
}
