/* ============================================================
   SECTIONS REBRAND — Hostinger identity v2
   Recria: guarantee, offer, social_proof, product_details (modules)
   Mantém o mesmo HTML — apenas redesigna via CSS.
   Paleta: meteorite #2F1C6A · royal #673DE6 · electric #7E51E8 ·
           heliotrope #B49DEC · lavender #E6DEFB · mint #1ABF7A ·
           sun #F5B82E · coral #FF6B5C
   ============================================================ */

/* ------------------------------------------------------------
   SHARED — base section ornaments (Hostinger “card frame”)
   ------------------------------------------------------------ */
.guarantee-v2,
.offer-v2,
.proof-v2,
section[id="modulos"] {
    position: relative;
    padding-block: clamp(64px, 9vw, 120px) !important;
    overflow: hidden;
}
/* Halo radial atrás de cada seção (royal + mint accents) */
.guarantee-v2::before,
.offer-v2::before,
.proof-v2::before,
section[id="modulos"]::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(50% 60% at 80% 10%, rgba(126,81,232,.18), transparent 60%),
        radial-gradient(40% 50% at 10% 90%, rgba(26,191,122,.10), transparent 60%);
}
.guarantee-v2 > .container,
.offer-v2 > .container,
.proof-v2 > .container,
section[id="modulos"] > .container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   1. GUARANTEE V2 — selo grande + card glass meteorite
   ============================================================ */
.guarantee-v2__card {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 44px);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
        linear-gradient(160deg, rgba(47,28,106,.85) 0%, rgba(22,17,49,.85) 60%, rgba(15,11,34,.85) 100%);
    border: 1px solid rgba(180,157,236,.25);
    box-shadow:
        0 30px 80px rgba(15,11,34,.55),
        0 0 0 1px rgba(126,81,232,.18) inset,
        0 -2px 0 0 rgba(26,191,122,.35) inset;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* Brilho mint no topo (assinatura Hostinger) */
.guarantee-v2__card::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1ABF7A, #5DE3A6, #1ABF7A, transparent);
    box-shadow: 0 0 12px rgba(26,191,122,.6);
}
/* Cantos decorativos (L-shape) */
.guarantee-v2__card::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    border: 1px dashed rgba(180,157,236,.18);
    pointer-events: none;
}

.guarantee-v2__seal {
    display: inline-flex;
    margin-bottom: 22px;
    position: relative;
    filter: drop-shadow(0 14px 28px rgba(26,191,122,.35));
    animation: sealFloat 4s ease-in-out infinite;
}
@keyframes sealFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.guarantee-v2__seal svg { display: block; }

.guarantee-v2 .eyebrow,
.guarantee-v2 .eyebrow--green {
    margin-bottom: 18px;
    background: linear-gradient(90deg, rgba(26,191,122,.15), rgba(126,81,232,.15)) !important;
    border: 1px solid rgba(26,191,122,.35) !important;
    color: #5DE3A6 !important;
}

.guarantee-v2 h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 14px;
    background: linear-gradient(135deg, #F4F1FF 0%, #B49DEC 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.guarantee-v2__desc {
    color: #C7C0E0;
    font-size: clamp(.95rem, 2.2vw, 1.05rem);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 26px;
}

.guarantee-v2__items {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 10px;
    text-align: left;
}
.guarantee-v2__items li {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(180,157,236,.15);
    border-radius: 12px;
    color: #E6DEFB;
    font-size: .95rem;
    transition: border-color .25s, background .25s, transform .15s;
}
.guarantee-v2__items li:hover {
    border-color: rgba(26,191,122,.4);
    background: rgba(26,191,122,.06);
    transform: translateX(4px);
}
.guarantee-v2__items li i {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(26,191,122,.25), rgba(26,191,122,.08));
    color: #5DE3A6;
    font-size: 1rem;
    flex-shrink: 0;
}

.guarantee-v2__quote {
    font-style: italic;
    color: #D8CDFB;
    font-size: 1rem;
    line-height: 1.55;
    padding: 18px 22px;
    margin: 0 0 26px;
    border-left: 3px solid #1ABF7A;
    background: rgba(26,191,122,.05);
    border-radius: 0 12px 12px 0;
    text-align: left;
}
.guarantee-v2__quote i { color: #1ABF7A; margin-right: 6px; }
.guarantee-v2__quote strong {
    color: #F5B82E;
    font-weight: 800;
    font-style: normal;
}

.guarantee-v2 .btn.btn-primary {
    background: linear-gradient(135deg, #673DE6 0%, #7E51E8 60%, #1ABF7A 100%) !important;
    background-size: 200% 100% !important;
    background-position: 0% 50% !important;
    transition: background-position .6s ease, transform .15s, box-shadow .25s !important;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    border-radius: 999px !important;
}
.guarantee-v2 .btn.btn-primary:hover {
    background-position: 100% 50% !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 40px rgba(26,191,122,.35) !important;
}

/* ============================================================
   2. OFFER V2 — card premium meteorite + price-stack Hostinger
   ============================================================ */
.offer-v2__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}
.offer-v2__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(245,184,46,.18), rgba(255,107,92,.18));
    border: 1px solid rgba(245,184,46,.4);
    color: #F5B82E;
    font-weight: 700; font-size: .8rem;
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 14px;
}
.offer-v2__title {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #F4F1FF 0%, #B49DEC 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.offer-v2__sub {
    color: #A8A3C2;
    font-size: clamp(.95rem, 2.2vw, 1.05rem);
    line-height: 1.55;
}

.offer-v2__card {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
        linear-gradient(160deg, rgba(47,28,106,.9) 0%, rgba(22,17,49,.92) 60%, rgba(15,11,34,.94) 100%);
    border: 1px solid rgba(180,157,236,.3);
    box-shadow:
        0 40px 100px rgba(15,11,34,.6),
        0 0 0 1px rgba(126,81,232,.2) inset;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
/* Faixa superior gradient Hostinger */
.offer-v2__card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #673DE6 0%, #B49DEC 35%, #1ABF7A 65%, #F5B82E 100%);
    border-radius: 28px 28px 0 0;
}
/* Pontos decorativos no fundo */
.offer-v2__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(180,157,236,.12) 1px, transparent 1.2px);
    background-size: 22px 22px;
    mask-image: radial-gradient(60% 80% at 100% 0%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(60% 80% at 100% 0%, #000, transparent 70%);
    pointer-events: none;
    opacity: .35;
}
.offer-v2__card > * { position: relative; z-index: 1; }

/* Ribbon -44% OFF redesenhada */
.offer-v2__ribbon {
    position: absolute;
    top: 18px; right: -42px;
    transform: rotate(35deg);
    background: linear-gradient(90deg, #F5B82E 0%, #FF6B5C 50%, #E04B7A 100%);
    color: #1A1733;
    font-weight: 900; font-size: .82rem;
    padding: 6px 50px;
    box-shadow: 0 10px 28px rgba(255,107,92,.35);
    z-index: 2;
    letter-spacing: .04em;
}
.offer-v2__ribbon i { margin-right: 4px; }

.offer-v2__card-head {
    text-align: center;
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px dashed rgba(180,157,236,.2);
}
.offer-v2__card-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    color: #F4F1FF;
    margin: 0 0 6px;
}
.offer-v2__card-tagline {
    color: #B49DEC;
    font-size: .92rem;
    margin: 0;
}

/* Bloco de preço — padrão Hostinger */
.offer-v2__price {
    text-align: center;
    background:
        radial-gradient(80% 100% at 50% 0%, rgba(245,184,46,.12), transparent 70%),
        linear-gradient(180deg, rgba(126,81,232,.08), rgba(26,191,122,.04));
    border: 1px solid rgba(180,157,236,.2);
    border-radius: 20px;
    padding: 24px 16px;
    margin-bottom: 30px;
    position: relative;
}
.offer-v2__price-from {
    color: #A8A3C2;
    font-size: .92rem;
    margin-bottom: 4px;
}
.offer-v2__price-from small { display: inline-block; margin-right: 6px; }
.offer-v2__price-from del { opacity: .85; }

.offer-v2__price-now {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px;
    margin: 6px 0 8px;
}
.offer-v2__price-now small {
    color: #C7C0E0;
    font-size: .85rem;
    margin-bottom: 2px;
}
.offer-v2__price-now strong {
    font-size: clamp(2.4rem, 7vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    background: linear-gradient(135deg, #F5B82E 0%, #FF6B5C 50%, #B49DEC 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    text-shadow: 0 4px 24px rgba(245,184,46,.25);
}
.offer-v2__price-once {
    display: inline-block;
    color: #1ABF7A;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 4px;
}
.offer-v2__price-inst {
    display: inline-flex; align-items: center; gap: 6px;
    color: #D8CDFB;
    font-size: .92rem;
    margin-top: 8px;
    padding: 6px 14px;
    background: rgba(126,81,232,.15);
    border: 1px solid rgba(180,157,236,.25);
    border-radius: 999px;
}
.offer-v2__price-inst i { color: #B49DEC; }

.offer-v2__savings {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 14px;
    padding: 8px 16px;
    background: linear-gradient(90deg, rgba(26,191,122,.18), rgba(26,191,122,.08));
    border: 1px solid rgba(26,191,122,.45);
    border-radius: 999px;
    color: #5DE3A6;
    font-size: .9rem;
    font-weight: 700;
}
.offer-v2__savings strong { color: #1ABF7A; }
.offer-v2__savings i { color: #1ABF7A; }

/* Includes grid */
.offer-v2__includes {
    margin-bottom: 28px;
}
.offer-v2__includes h4 {
    font-size: .92rem;
    font-weight: 800;
    color: #F4F1FF;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0 0 14px;
    display: flex; align-items: center; gap: 8px;
}
.offer-v2__includes h4::after {
    content: "";
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(180,157,236,.4), transparent);
}
.offer-v2__includes ul {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.offer-v2__includes li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 14px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(180,157,236,.15);
    border-radius: 14px;
    transition: border-color .25s, background .25s, transform .15s;
}
.offer-v2__includes li:hover {
    border-color: rgba(126,81,232,.5);
    background: rgba(126,81,232,.08);
    transform: translateY(-2px);
}
.offer-v2__includes li i {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(126,81,232,.3), rgba(180,157,236,.15));
    color: #B49DEC;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.offer-v2__includes li:hover i {
    background: linear-gradient(135deg, #7E51E8, #1ABF7A);
    color: #fff;
}
.offer-v2__includes li strong {
    display: block;
    color: #F4F1FF;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.offer-v2__includes li span {
    display: block;
    color: #A8A3C2;
    font-size: .82rem;
    line-height: 1.45;
}

/* Bonus block */
.offer-v2__bonus {
    margin-bottom: 28px;
    padding: 22px;
    background:
        radial-gradient(60% 100% at 0% 0%, rgba(245,184,46,.1), transparent 60%),
        linear-gradient(180deg, rgba(245,184,46,.05), rgba(255,107,92,.03));
    border: 1px dashed rgba(245,184,46,.4);
    border-radius: 18px;
}
.offer-v2__bonus-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(90deg, #F5B82E, #FF6B5C);
    color: #1A1733;
    font-weight: 900; font-size: .78rem;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(245,184,46,.3);
}
.offer-v2__bonus ul {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 10px;
}
.offer-v2__bonus li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px;
    background: rgba(15,11,34,.4);
    border-radius: 10px;
    border: 1px solid rgba(245,184,46,.15);
    transition: border-color .25s, transform .15s;
}
.offer-v2__bonus li:hover {
    border-color: rgba(245,184,46,.45);
    transform: translateX(3px);
}
.offer-v2__bonus li .bonus-icon {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #F5B82E, #FF6B5C);
    color: #1A1733;
    font-size: 1rem;
    flex-shrink: 0;
}
.offer-v2__bonus li strong {
    display: block;
    color: #F4F1FF;
    font-size: .92rem;
    font-weight: 700;
}
.offer-v2__bonus li em {
    display: block;
    color: #F5B82E;
    font-size: .78rem;
    font-style: normal;
    font-weight: 600;
    margin-top: 2px;
}

/* CTA principal — laranja Hostinger animado */
.offer-v2__cta {
    position: relative;
    display: flex; align-items: center; gap: 14px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(90deg, #F5B82E 0%, #FF6B5C 50%, #E04B7A 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
    box-shadow:
        0 18px 48px rgba(255,107,92,.5),
        0 0 0 1px rgba(255,255,255,.1) inset,
        0 -3px 0 0 rgba(0,0,0,.15) inset;
    transition: background-position .8s ease, transform .15s, box-shadow .25s;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    margin-bottom: 18px;
}
.offer-v2__cta:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow:
        0 26px 60px rgba(255,107,92,.6),
        0 0 0 1px rgba(255,255,255,.15) inset,
        0 -3px 0 0 rgba(0,0,0,.2) inset;
}
.offer-v2__cta-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.45) 50%, transparent 65%);
    transform: translateX(-110%);
    z-index: -1;
    pointer-events: none;
}
.offer-v2__cta:hover .offer-v2__cta-shine { animation: offerShine 1.1s ease forwards; }
@keyframes offerShine { to { transform: translateX(110%); } }

.offer-v2__cta > i:first-of-type {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: offerPulse 2.4s ease-in-out infinite;
}
@keyframes offerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
    50%      { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
.offer-v2__cta-label {
    display: flex; flex-direction: column;
    line-height: 1.2;
    text-align: left;
    flex: 1;
}
.offer-v2__cta-label strong { font-size: 1.1rem; font-weight: 900; }
.offer-v2__cta-label small { font-size: .8rem; opacity: .9; font-weight: 600; margin-top: 2px; }
.offer-v2__cta-arrow {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,.25);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform .25s;
}
.offer-v2__cta:hover .offer-v2__cta-arrow { transform: translateX(4px); }

.offer-v2__trust {
    list-style: none; padding: 0; margin: 0 0 14px;
    display: flex; flex-wrap: wrap; gap: 14px 22px;
    justify-content: center;
}
.offer-v2__trust li {
    display: inline-flex; align-items: center; gap: 6px;
    color: #C7C0E0;
    font-size: .85rem;
    font-weight: 600;
}
.offer-v2__trust li i { color: #1ABF7A; font-size: 1rem; }

.offer-v2__note {
    text-align: center;
    color: #A8A3C2;
    font-size: .82rem;
    margin: 0;
}

/* ============================================================
   3. PROOF V2 — stats + grid masonry style
   ============================================================ */
.proof-v2__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}
.proof-v2__head .eyebrow { margin-bottom: 12px; }
.proof-v2__head h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #F4F1FF 0%, #B49DEC 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-v2__head .muted { color: #A8A3C2; font-size: 1rem; }

/* Stats bar Hostinger */
.proof-v2__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0 auto 40px;
    max-width: 980px;
    padding: 22px 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        linear-gradient(160deg, rgba(47,28,106,.7), rgba(22,17,49,.7));
    border: 1px solid rgba(180,157,236,.25);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(15,11,34,.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}
.proof-v2__stats::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7E51E8, #B49DEC, #1ABF7A, transparent);
}
.proof-v2__stat {
    text-align: center;
    padding: 8px 4px;
    position: relative;
}
.proof-v2__stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0; top: 25%; bottom: 25%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(180,157,236,.3), transparent);
}
.proof-v2__stat strong {
    display: block;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #B49DEC 0%, #7E51E8 60%, #1ABF7A 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 4px;
    letter-spacing: -.02em;
}
.proof-v2__stat span {
    color: #A8A3C2;
    font-size: .82rem;
    font-weight: 600;
}

/* Grid de prints/depoimentos */
.proof-v2__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}
.proof-v2__item {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(180,157,236,.2);
    background: rgba(15,11,34,.6);
    box-shadow: 0 12px 32px rgba(15,11,34,.45);
    transition: transform .3s ease, border-color .3s, box-shadow .3s;
    position: relative;
}
.proof-v2__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(126,81,232,.12) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}
.proof-v2__item::after {
    content: "\f1d4"; /* remix chat-quote-fill icon (fallback) */
    font-family: 'remixicon';
    position: absolute;
    top: 8px; right: 8px;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #7E51E8, #B49DEC);
    color: #fff;
    border-radius: 50%;
    font-size: .85rem;
    box-shadow: 0 4px 12px rgba(126,81,232,.45);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
.proof-v2__item:hover {
    transform: translateY(-6px);
    border-color: rgba(126,81,232,.6);
    box-shadow:
        0 24px 60px rgba(126,81,232,.35),
        0 0 0 1px rgba(180,157,236,.3) inset;
}
.proof-v2__item:hover::before,
.proof-v2__item:hover::after {
    opacity: 1;
    transform: translateY(0);
}
.proof-v2__item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .5s ease;
}
.proof-v2__item:hover img { transform: scale(1.03); }

.proof-v2__cta {
    text-align: center;
    margin-top: 12px;
}
.proof-v2__cta .btn.btn-primary {
    background: linear-gradient(135deg, #673DE6 0%, #7E51E8 60%, #B49DEC 100%) !important;
    background-size: 200% 100% !important;
    background-position: 0% 50% !important;
    transition: background-position .6s ease, transform .15s, box-shadow .25s !important;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    border-radius: 999px !important;
}
.proof-v2__cta .btn.btn-primary:hover {
    background-position: 100% 50% !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 40px rgba(126,81,232,.45) !important;
}

/* ============================================================
   4. MODULES (product_details) — grid Hostinger com pílulas
   ============================================================ */
section[id="modulos"] .text-center .eyebrow {
    background: linear-gradient(90deg, rgba(126,81,232,.15), rgba(180,157,236,.15)) !important;
    border: 1px solid rgba(180,157,236,.35) !important;
    color: #D8CDFB !important;
    margin-bottom: 12px;
}
section[id="modulos"] h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #F4F1FF 0%, #B49DEC 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
section[id="modulos"] .muted { color: #A8A3C2; }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 40px;
}
.modules-grid .module {
    display: flex; flex-direction: column; gap: 10px;
    padding: 18px 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        linear-gradient(160deg, rgba(47,28,106,.55), rgba(22,17,49,.7));
    border: 1px solid rgba(180,157,236,.18);
    border-radius: 16px;
    transition: border-color .3s, transform .25s, box-shadow .3s, background .3s;
    position: relative;
    overflow: hidden;
    min-height: 110px;
}
.modules-grid .module::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, #7E51E8, #B49DEC, #1ABF7A);
    opacity: 0;
    transition: opacity .3s;
}
.modules-grid .module::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
    transition: background .3s;
}
.modules-grid .module:hover {
    transform: translateY(-4px);
    border-color: rgba(126,81,232,.5);
    background:
        linear-gradient(180deg, rgba(126,81,232,.08), rgba(180,157,236,.04)),
        linear-gradient(160deg, rgba(47,28,106,.7), rgba(22,17,49,.8));
    box-shadow: 0 16px 40px rgba(126,81,232,.25);
}
.modules-grid .module:hover::before { opacity: 1; }
.modules-grid .module:hover::after {
    background: linear-gradient(135deg, rgba(126,81,232,.5), rgba(180,157,236,.4), rgba(26,191,122,.4));
}

.modules-grid .module .num {
    display: inline-flex; align-items: center; gap: 6px;
    align-self: flex-start;
    padding: 5px 12px;
    background: linear-gradient(135deg, #2F1C6A, #673DE6);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    border-radius: 999px;
    border: 1px solid rgba(180,157,236,.4);
    box-shadow: 0 4px 12px rgba(126,81,232,.3);
    text-transform: uppercase;
}
/* Bônus — destaque dourado */
.modules-grid .module .num:not(:empty)[data-bonus],
.modules-grid .module .num:has(+ .name) {
    /* default purple — bonus override applied below by content match using class would be ideal */
}
/* Heurística: se o num contém "BÔNUS" via :has (where supported) */
.modules-grid .module:has(.num:where([class*="bonus"])) .num,
.modules-grid .module .num.is-bonus {
    background: linear-gradient(135deg, #F5B82E, #FF6B5C) !important;
    color: #1A1733 !important;
    border-color: rgba(245,184,46,.5) !important;
    box-shadow: 0 4px 12px rgba(245,184,46,.35) !important;
}

.modules-grid .module .name {
    color: #E6DEFB;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.4;
}
.modules-grid .module:hover .name { color: #F4F1FF; }

section[id="modulos"] .btn.btn-primary {
    background: linear-gradient(135deg, #673DE6 0%, #7E51E8 60%, #B49DEC 100%) !important;
    background-size: 200% 100% !important;
    background-position: 0% 50% !important;
    transition: background-position .6s ease, transform .15s, box-shadow .25s !important;
    padding: 14px 28px !important;
    border-radius: 999px !important;
}
section[id="modulos"] .btn.btn-primary:hover {
    background-position: 100% 50% !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 40px rgba(126,81,232,.4) !important;
}

/* ============================================================
   RESPONSIVE — mobile first refinements
   ============================================================ */
@media (max-width: 720px) {
    .guarantee-v2__card,
    .offer-v2__card {
        border-radius: 22px;
        padding: 24px 18px;
    }
    .guarantee-v2__card::after { inset: 12px; border-radius: 16px; }

    .guarantee-v2__seal svg { width: 96px; height: 96px; }
    .guarantee-v2__items li { padding: 10px 12px; font-size: .88rem; }
    .guarantee-v2__items li i { width: 26px; height: 26px; font-size: .9rem; }
    .guarantee-v2__quote { padding: 14px 16px; font-size: .92rem; }

    .offer-v2__ribbon {
        top: 14px; right: -38px;
        font-size: .72rem;
        padding: 5px 44px;
    }
    .offer-v2__price { padding: 18px 14px; border-radius: 16px; }
    .offer-v2__includes ul { grid-template-columns: 1fr; }
    .offer-v2__cta {
        padding: 14px 16px;
        gap: 10px;
    }
    .offer-v2__cta > i:first-of-type { width: 34px; height: 34px; font-size: 1rem; }
    .offer-v2__cta-label strong { font-size: .98rem; }
    .offer-v2__cta-label small { font-size: .72rem; }
    .offer-v2__cta-arrow { width: 30px; height: 30px; font-size: .95rem; }
    .offer-v2__trust { gap: 10px 16px; }
    .offer-v2__trust li { font-size: .78rem; }

    .proof-v2__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 16px 12px;
        border-radius: 18px;
    }
    .proof-v2__stat:nth-child(2)::after,
    .proof-v2__stat:last-child::after { display: none; }
    .proof-v2__stat:nth-child(2n)::after { display: none; }
    .proof-v2__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .modules-grid .module {
        flex-direction: row; align-items: center;
        min-height: auto;
        padding: 14px 14px;
    }
    .modules-grid .module .num { align-self: center; flex-shrink: 0; }
    .modules-grid .module .name { font-size: .88rem; }
}

@media (max-width: 420px) {
    .proof-v2__grid { grid-template-columns: 1fr; }
    .offer-v2__ribbon { display: none; }
}

/* ============================================================
   FIX — gradient text-clip stays solid on top of body dot pattern
   (evita o efeito "texto cinzado/selecionado" sobre o fundo)
   ============================================================ */
section h2,
.pains-v2__head h2,
.solution-v2__head h2,
section[id="solucao"] h2,
section[id="dores"] h2,
section[id="como-funciona"] h2,
section[id="beneficios"] h2 {
    isolation: isolate;
    position: relative;
    z-index: 1;
}
/* Texto base sempre opaco em prose (sem clip transparente) */
section .prose p,
section .prose li,
.pains-v2__card p,
.solution-v2__card p {
    color: #E6DEFB !important;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* ============================================================
   5. SOLUTION V2 — Hostinger card narrative + feature list
   (aplicado a section.section-alt#solucao e #como-funciona)
   ============================================================ */
section[id="solucao"],
section[id="como-funciona"] {
    padding-block: clamp(64px, 9vw, 120px) !important;
    position: relative;
    overflow: hidden;
}
section[id="solucao"] > .container,
section[id="como-funciona"] > .container {
    position: relative;
    z-index: 1;
}

/* Eyebrow + título centralizado padrão Hostinger */
section[id="solucao"] .text-center,
section[id="como-funciona"] .text-center {
    margin-bottom: 36px !important;
}
section[id="solucao"] .eyebrow,
section[id="como-funciona"] .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(90deg, rgba(126,81,232,.18), rgba(180,157,236,.14)) !important;
    border: 1px solid rgba(180,157,236,.4) !important;
    border-radius: 999px !important;
    color: #D8CDFB !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    margin-bottom: 14px;
}
section[id="solucao"] h2,
section[id="como-funciona"] h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.18;
    margin: 0 0 12px;
    color: #F4F1FF;
    /* sem gradient-clip pra evitar efeito moiré */
}
section[id="solucao"] h2 .highlight,
section[id="como-funciona"] h2 .highlight {
    background: linear-gradient(135deg, #B49DEC 0%, #7E51E8 60%, #1ABF7A 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
section[id="solucao"] .muted,
section[id="como-funciona"] .muted {
    color: #B49DEC !important;
    font-size: 1rem;
}

/* Bloco prose dentro de card glass meteorite */
section[id="solucao"] .prose,
section[id="como-funciona"] .prose {
    max-width: 760px !important;
    margin: 0 auto !important;
    padding: clamp(24px, 4vw, 40px) clamp(20px, 3.5vw, 36px) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        linear-gradient(160deg, rgba(47,28,106,.7) 0%, rgba(22,17,49,.75) 60%, rgba(15,11,34,.8) 100%);
    border: 1px solid rgba(180,157,236,.22);
    border-radius: 22px;
    box-shadow:
        0 24px 60px rgba(15,11,34,.5),
        0 0 0 1px rgba(126,81,232,.15) inset;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}
section[id="solucao"] .prose::before,
section[id="como-funciona"] .prose::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7E51E8 30%, #B49DEC 50%, #1ABF7A 70%, transparent);
}
section[id="solucao"] .prose p,
section[id="como-funciona"] .prose p {
    color: #E6DEFB !important;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 16px;
}
section[id="solucao"] .prose p:last-of-type,
section[id="como-funciona"] .prose p:last-of-type {
    margin-bottom: 22px;
}

/* Feature list — ícones mint + hover lift */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0 !important;
    display: grid;
    gap: 10px;
}
.feature-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(180,157,236,.18);
    border-radius: 12px;
    color: #E6DEFB;
    font-size: .95rem;
    transition: border-color .25s, background .25s, transform .15s;
}
.feature-list li:hover {
    border-color: rgba(26,191,122,.45);
    background: rgba(26,191,122,.06);
    transform: translateX(4px);
}
.feature-list li i {
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(26,191,122,.28), rgba(26,191,122,.08));
    color: #1ABF7A;
    font-size: .95rem;
    flex-shrink: 0;
}

section[id="solucao"] .text-center .btn.btn-primary,
section[id="como-funciona"] .text-center .btn.btn-primary,
section[id="solucao"] .prose + .text-center .btn,
section[id="solucao"] .prose .btn.btn-primary {
    background: linear-gradient(135deg, #673DE6 0%, #7E51E8 60%, #B49DEC 100%) !important;
    background-size: 200% 100% !important;
    background-position: 0% 50% !important;
    transition: background-position .6s ease, transform .15s, box-shadow .25s !important;
    padding: 13px 26px !important;
    border-radius: 999px !important;
}
section[id="solucao"] .btn.btn-primary:hover,
section[id="como-funciona"] .btn.btn-primary:hover {
    background-position: 100% 50% !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 36px rgba(126,81,232,.4) !important;
}

/* ============================================================
   6. PAINS V2 — cards visceral com numeração coral + ícone
   ============================================================ */
.pains-v2 {
    padding-block: clamp(64px, 9vw, 120px) !important;
    position: relative;
    overflow: hidden;
}
.pains-v2 > .container { position: relative; z-index: 1; }

.pains-v2__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}
.pains-v2 .eyebrow,
.pains-v2 .eyebrow--warn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(90deg, rgba(255,107,92,.18), rgba(245,184,46,.14)) !important;
    border: 1px solid rgba(255,107,92,.4) !important;
    border-radius: 999px !important;
    color: #FFB39E !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    margin-bottom: 14px;
}
.pains-v2__head h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem) !important;
    font-weight: 900 !important;
    letter-spacing: -.02em !important;
    line-height: 1.18 !important;
    margin: 0 0 12px !important;
    color: #F4F1FF !important;
    background: none !important;
    -webkit-background-clip: initial !important;
            background-clip: initial !important;
    -webkit-text-fill-color: #F4F1FF !important;
}
/* Remove o ponto mint que estava colando no h2 */
.pains-v2__head h2::after { display: none !important; }

.pains-v2__head .muted {
    color: #B49DEC !important;
    font-size: 1rem;
}

/* Grid de dores */
.pains-v2__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.pains-v2__card {
    position: relative;
    padding: 26px 20px 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        linear-gradient(160deg, rgba(47,28,106,.55), rgba(22,17,49,.7));
    border: 1px solid rgba(180,157,236,.18);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15,11,34,.4);
    transition: border-color .3s, transform .25s, box-shadow .3s, background .3s;
    overflow: hidden;
}
.pains-v2__card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #FF6B5C, #F5B82E);
    opacity: 0;
    transition: opacity .3s;
}
.pains-v2__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,107,92,.4);
    background:
        linear-gradient(180deg, rgba(255,107,92,.06), rgba(245,184,46,.03)),
        linear-gradient(160deg, rgba(47,28,106,.7), rgba(22,17,49,.8));
    box-shadow: 0 18px 44px rgba(255,107,92,.2);
}
.pains-v2__card:hover::before { opacity: 1; }

.pains-v2__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B5C 0%, #F5B82E 100%);
    color: #1A1733;
    font-size: .8rem;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(255,107,92,.4);
    position: absolute;
    top: -14px; left: 18px;
    border: 2px solid #161131;
    letter-spacing: .02em;
}

.pains-v2__card > i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,107,92,.18), rgba(245,184,46,.1));
    border: 1px solid rgba(255,107,92,.3);
    color: #FF6B5C;
    font-size: 1.3rem;
    margin-bottom: 14px;
    transition: background .3s, color .3s, transform .25s;
}
.pains-v2__card:hover > i {
    background: linear-gradient(135deg, #FF6B5C, #F5B82E);
    color: #fff;
    transform: scale(1.05) rotate(-3deg);
}

.pains-v2__card p {
    margin: 0 !important;
    color: #E6DEFB !important;
    font-size: .95rem;
    line-height: 1.55;
    font-weight: 500;
}

/* Resposta otimista (Boa notícia) — destaque mint */
.pains-v2__answer {
    display: flex; align-items: center; gap: 14px;
    max-width: 720px;
    margin: 0 auto;
    padding: 18px 22px;
    background:
        linear-gradient(90deg, rgba(26,191,122,.12), rgba(126,81,232,.08));
    border: 1px solid rgba(26,191,122,.4);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(26,191,122,.18);
    position: relative;
    overflow: hidden;
}
.pains-v2__answer::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1ABF7A, #5DE3A6);
    box-shadow: 0 0 12px rgba(26,191,122,.6);
}
.pains-v2__answer i {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1ABF7A, #5DE3A6);
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(26,191,122,.4);
    animation: answerPulse 2.4s ease-in-out infinite;
}
@keyframes answerPulse {
    0%, 100% { box-shadow: 0 6px 16px rgba(26,191,122,.4), 0 0 0 0 rgba(26,191,122,.5); }
    50%      { box-shadow: 0 6px 16px rgba(26,191,122,.4), 0 0 0 10px rgba(26,191,122,0); }
}
.pains-v2__answer p {
    margin: 0;
    color: #E6DEFB;
    font-size: .98rem;
    line-height: 1.5;
}
.pains-v2__answer strong {
    color: #5DE3A6;
    font-weight: 800;
}

/* ============================================================
   PAINS — mobile
   ============================================================ */
@media (max-width: 720px) {
    .pains-v2__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .pains-v2__card { padding: 22px 16px 16px; }
    .pains-v2__num { top: -12px; left: 14px; width: 28px; height: 28px; font-size: .72rem; }
    .pains-v2__card > i { width: 38px; height: 38px; font-size: 1.1rem; }
    .pains-v2__answer {
        flex-direction: row;
        padding: 14px 16px;
        gap: 10px;
    }
    .pains-v2__answer i { width: 32px; height: 32px; font-size: 1rem; }
    .pains-v2__answer p { font-size: .9rem; }

    section[id="solucao"] .prose,
    section[id="como-funciona"] .prose {
        padding: 22px 18px !important;
        border-radius: 18px;
    }
    section[id="solucao"] .prose p,
    section[id="como-funciona"] .prose p {
        font-size: .95rem;
        line-height: 1.6;
    }
    .feature-list li {
        padding: 10px 12px;
        font-size: .88rem;
    }
}
