:root {
    --alpha-bg: #17120f;
    --alpha-bg-2: #211914;
    --alpha-brown: #38261d;
    --alpha-gold: #c59a62;
    --alpha-gold-light: #e1c39a;
    --alpha-cream: #f7f3ed;
    --alpha-white: #ffffff;
    --alpha-text: #2a2522;
    --alpha-muted: #756e68;
    --alpha-line: #e8dfd4;
    --alpha-green: #12a66a;
    --alpha-green-dark: #0d8f5a;
    --alpha-radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body.alpha-v2-page {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--alpha-cream);
}

body.alpha-v2-page header.site-header,
body.alpha-v2-page footer.site-footer {
    display: none !important;
}

.alpha-v2,
.alpha-v2 * {
    box-sizing: border-box;
}

.alpha-v2 {
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: var(--alpha-text);
    background: var(--alpha-cream);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.5;
}

.alpha-v2 img {
    max-width: 100%;
    height: auto;
}

.alpha-v2 a {
    text-decoration: none;
}

.alpha-v2-container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.alpha-v2-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 22px 0;
}

.alpha-v2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.alpha-v2-brand {
    display: inline-flex;
}

.alpha-v2-logo-box {
    display: flex;
    align-items: center;
    padding: 9px 14px;
    min-height: 62px;
    background: rgba(255,255,255,.96);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,.14);
}

.alpha-v2-logo-box img {
    display: block;
    width: 150px;
    max-height: 48px;
    object-fit: contain;
}

.alpha-v2-header-location {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    font-weight: 600;
}

.alpha-v2-pin {
    color: var(--alpha-gold);
    font-size: 12px;
}


/* HERO */

.alpha-v2-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 138px 0 75px;
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(197,154,98,.14),
            transparent 33%
        ),
        linear-gradient(
            120deg,
            #15110f 0%,
            #211813 55%,
            #2c1d16 100%
        );
}

.alpha-v2-hero::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(197,154,98,.1);
    border-radius: 50%;
    pointer-events: none;
}

.alpha-v2-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 72px;
}

.alpha-v2-eyebrow,
.alpha-v2-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--alpha-gold);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.alpha-v2-hero h1 {
    margin: 0;
    max-width: 650px;
    color: var(--alpha-white);
    font-size: clamp(43px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.045em;
    font-weight: 760;
}

.alpha-v2-hero h1 span {
    color: var(--alpha-gold-light);
}

.alpha-v2-hero-text {
    max-width: 620px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.7;
}

.alpha-v2-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 20px;
    margin: 29px 0;
}

.alpha-v2-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.93);
    font-size: 14px;
    font-weight: 600;
}

.alpha-v2-benefits span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    color: #fff;
    background: var(--alpha-green);
    border-radius: 50%;
    font-size: 12px;
}

.alpha-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.alpha-v2-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 750;
    transition:
        transform .18s ease,
        background .18s ease,
        border .18s ease,
        box-shadow .18s ease;
}

.alpha-v2-btn:hover {
    transform: translateY(-2px);
}

.alpha-v2-btn-primary {
    color: #fff !important;
    background: var(--alpha-green);
    box-shadow: 0 12px 30px rgba(18,166,106,.24);
}

.alpha-v2-btn-primary:hover {
    background: var(--alpha-green-dark);
}

.alpha-v2-btn-secondary {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.04);
}

.alpha-v2-btn-secondary:hover {
    border-color: rgba(255,255,255,.52);
    background: rgba(255,255,255,.08);
}

.alpha-v2-whatsapp-icon {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 0;
}

.alpha-v2-microcopy {
    margin: 16px 0 0;
    color: rgba(255,255,255,.52);
    font-size: 12px;
}

.alpha-v2-photo-frame {
    position: relative;
    overflow: hidden;
    min-height: 525px;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,.32);
}

.alpha-v2-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15,10,8,.55) 0%,
            transparent 42%
        );
    pointer-events: none;
}

.alpha-v2-photo-frame > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.alpha-v2-photo-badge {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
    background: rgba(22,16,13,.72);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    backdrop-filter: blur(12px);
}

.alpha-v2-photo-badge strong {
    font-size: 15px;
}

.alpha-v2-photo-badge span {
    color: rgba(255,255,255,.68);
    font-size: 13px;
}


/* TRUST */

.alpha-v2-trust {
    position: relative;
    z-index: 4;
    background: #fff;
    border-bottom: 1px solid var(--alpha-line);
}

.alpha-v2-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.alpha-v2-trust-item {
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    border-right: 1px solid var(--alpha-line);
}

.alpha-v2-trust-item:last-child {
    border-right: 0;
}

.alpha-v2-trust-item strong {
    color: #241c17;
    font-size: 15px;
}

.alpha-v2-trust-item span {
    color: var(--alpha-muted);
    font-size: 13px;
}


/* SEÇÕES */

.alpha-v2-section {
    padding: 94px 0;
}

.alpha-v2-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.alpha-v2-section-heading h2,
.alpha-v2-why h2,
.alpha-v2-location h2,
.alpha-v2-final h2 {
    margin: 0;
    color: #241b17;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.alpha-v2-section-heading p,
.alpha-v2-why-copy > p {
    margin: 17px auto 0;
    color: var(--alpha-muted);
    font-size: 17px;
    line-height: 1.7;
}


/* TRATAMENTOS */

.alpha-v2-treatments {
    background: var(--alpha-cream);
}

.alpha-v2-treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.alpha-v2-treatment-card {
    padding: 29px;
    min-height: 235px;
    background: #fff;
    border: 1px solid var(--alpha-line);
    border-radius: 18px;
    box-shadow: 0 9px 30px rgba(51,36,27,.045);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border .18s ease;
}

.alpha-v2-treatment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197,154,98,.5);
    box-shadow: 0 18px 40px rgba(51,36,27,.09);
}

.alpha-v2-card-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alpha-gold);
    background: rgba(197,154,98,.10);
    border-radius: 12px;
    font-size: 21px;
}

.alpha-v2-treatment-card h3 {
    margin: 0 0 10px;
    color: #2b201a;
    font-size: 19px;
}

.alpha-v2-treatment-card p {
    margin: 0;
    color: var(--alpha-muted);
    font-size: 14px;
    line-height: 1.65;
}

.alpha-v2-center-action {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}


/* WHY */

.alpha-v2-why {
    color: #fff;
    background: var(--alpha-bg);
}

.alpha-v2-why-grid {
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: 72px;
    align-items: center;
}

.alpha-v2-why h2 {
    color: #fff;
}

.alpha-v2-why-copy > p {
    color: rgba(255,255,255,.65);
}

.alpha-v2-feature-list {
    margin-top: 34px;
    display: grid;
    gap: 21px;
}

.alpha-v2-feature-list > div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
}

.alpha-v2-feature-list > div > span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--alpha-green);
    border-radius: 50%;
    font-size: 12px;
}

.alpha-v2-feature-list p {
    margin: 0;
    color: rgba(255,255,255,.64);
    font-size: 14px;
    line-height: 1.55;
}

.alpha-v2-feature-list strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 15px;
}

.alpha-v2-why-photo {
    overflow: hidden;
    height: 575px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.alpha-v2-why-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* CLINICA */

.alpha-v2-clinic {
    background: #fff;
}

.alpha-v2-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 14px;
}

.alpha-v2-gallery figure {
    margin: 0;
    overflow: hidden;
    height: 430px;
    border-radius: 18px;
}

.alpha-v2-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.alpha-v2-gallery figure:hover img {
    transform: scale(1.025);
}


/* LOCALIZAÇÃO */

.alpha-v2-location {
    background: var(--alpha-cream);
}

.alpha-v2-location-card {
    padding: 52px 58px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #312219,
            #1c1511
        );
    border-radius: 24px;
}

.alpha-v2-location h2 {
    color: #fff;
}

.alpha-v2-location p {
    color: rgba(255,255,255,.66);
}

.alpha-v2-address {
    margin: 18px 0 8px;
    color: #fff !important;
    font-size: 17px;
    font-weight: 650;
}

.alpha-v2-location-actions {
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alpha-v2-btn-secondary-light {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.28);
}


/* FINAL */

.alpha-v2-final {
    padding: 0 0 95px;
    background: var(--alpha-cream);
}

.alpha-v2-final-box {
    padding: 72px 40px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(197,154,98,.19),
            transparent 45%
        ),
        var(--alpha-bg);
    border-radius: 28px;
}

.alpha-v2-final h2 {
    max-width: 720px;
    margin: 0 auto;
    color: #fff;
}

.alpha-v2-final p {
    max-width: 620px;
    margin: 18px auto 28px;
    color: rgba(255,255,255,.67);
    font-size: 17px;
}

.alpha-v2-kicker-light {
    color: var(--alpha-gold-light);
}

.alpha-v2-final-notes {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    color: rgba(255,255,255,.64);
    font-size: 13px;
}


/* FOOTER */

.alpha-v2-footer {
    padding: 32px 0 38px;
    background: #120e0c;
    text-align: center;
}

.alpha-v2-footer img {
    width: 145px;
    max-height: 54px;
    padding: 8px 12px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
}

.alpha-v2-footer p {
    margin: 14px 0 0;
    color: rgba(255,255,255,.5);
    font-size: 12px;
}


/* MOBILE CTA */

.alpha-v2-mobile-cta {
    display: none;
}


/* TABLET */

@media (max-width: 980px) {

    .alpha-v2-hero-grid,
    .alpha-v2-why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .alpha-v2-hero {
        padding-top: 135px;
    }

    .alpha-v2-hero-content {
        max-width: 730px;
    }

    .alpha-v2-photo-frame {
        min-height: 560px;
    }

    .alpha-v2-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alpha-v2-why-photo {
        height: 500px;
    }

    .alpha-v2-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .alpha-v2-gallery figure:first-child {
        grid-column: 1 / -1;
    }

    .alpha-v2-location-card {
        grid-template-columns: 1fr;
    }

    .alpha-v2-location-actions {
        min-width: 0;
        flex-direction: row;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    body.alpha-v2-page {
        padding-bottom: 74px !important;
    }

    .alpha-v2-container {
        width: min(100% - 32px, 1160px);
    }

    .alpha-v2-header {
        padding: 16px 0;
    }

    .alpha-v2-logo-box {
        min-height: 52px;
        padding: 7px 10px;
    }

    .alpha-v2-logo-box img {
        width: 120px;
        max-height: 38px;
    }

    .alpha-v2-header-location {
        max-width: 125px;
        text-align: right;
        justify-content: flex-end;
        font-size: 11px;
        line-height: 1.35;
    }

    .alpha-v2-hero {
        min-height: auto;
        padding: 113px 0 52px;
    }

    .alpha-v2-hero-grid {
        gap: 34px;
    }

    .alpha-v2-eyebrow {
        margin-bottom: 13px;
        font-size: 10px;
        letter-spacing: .09em;
    }

    .alpha-v2-hero h1 {
        font-size: 39px;
        line-height: 1.06;
    }

    .alpha-v2-hero-text {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.6;
    }

    .alpha-v2-benefits {
        margin: 23px 0;
        display: grid;
        gap: 10px;
    }

    .alpha-v2-actions {
        display: grid;
    }

    .alpha-v2-btn {
        width: 100%;
        min-height: 56px;
        padding: 14px 18px;
        text-align: center;
    }

    .alpha-v2-microcopy {
        text-align: center;
    }

    .alpha-v2-photo-frame {
        min-height: 430px;
        border-radius: 21px;
    }

    .alpha-v2-photo-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .alpha-v2-trust-grid {
        grid-template-columns: 1fr;
    }

    .alpha-v2-trust-item {
        padding: 18px 15px;
        border-right: 0;
        border-bottom: 1px solid var(--alpha-line);
    }

    .alpha-v2-section {
        padding: 67px 0;
    }

    .alpha-v2-section-heading {
        margin-bottom: 34px;
    }

    .alpha-v2-section-heading h2,
    .alpha-v2-why h2,
    .alpha-v2-location h2,
    .alpha-v2-final h2 {
        font-size: 32px;
        line-height: 1.16;
    }

    .alpha-v2-section-heading p,
    .alpha-v2-why-copy > p {
        font-size: 15px;
    }

    .alpha-v2-treatment-grid {
        grid-template-columns: 1fr;
    }

    .alpha-v2-treatment-card {
        min-height: 0;
        padding: 24px;
    }

    .alpha-v2-why-grid {
        gap: 35px;
    }

    .alpha-v2-why-photo {
        height: 420px;
    }

    .alpha-v2-gallery {
        grid-template-columns: 1fr;
    }

    .alpha-v2-gallery figure,
    .alpha-v2-gallery figure:first-child {
        grid-column: auto;
        height: 390px;
    }

    .alpha-v2-location-card {
        padding: 35px 25px;
        gap: 28px;
    }

    .alpha-v2-location-actions {
        flex-direction: column;
    }

    .alpha-v2-final {
        padding-bottom: 70px;
    }

    .alpha-v2-final-box {
        padding: 54px 22px;
        border-radius: 20px;
    }

    .alpha-v2-final p {
        font-size: 15px;
    }

    .alpha-v2-final-notes {
        display: grid;
        gap: 8px;
    }

    .alpha-v2-mobile-cta {
        position: fixed;
        z-index: 9990;
        left: 12px;
        right: 12px;
        bottom: 10px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 13px 18px;
        color: #fff !important;
        background: var(--alpha-green);
        border-radius: 13px;
        box-shadow: 0 9px 30px rgba(0,0,0,.28);
        font-size: 15px;
        font-weight: 800;
    }

}


/* ACESSIBILIDADE */

.alpha-v2 a:focus-visible {
    outline: 3px solid var(--alpha-gold-light);
    outline-offset: 3px;
}


/* ==================================================
   ALPHA V2 - AJUSTES DE CONVERSÃO / ACABAMENTO
   ================================================== */


/* LOGO: remove o bloco branco e deixa a marca
   diretamente sobre o fundo escuro */

.alpha-v2-logo-box {
    min-height: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.alpha-v2-logo-box img {
    width: 165px;
    max-height: 52px;
    object-fit: contain;
}


/* FOTO HERO: enquadramento melhor para pessoa */

.alpha-v2-photo-frame > img {
    object-position: center 22%;
}


/* A faixa de confiança agora possui 4 itens */

.alpha-v2-trust-grid {
    grid-template-columns: repeat(4, 1fr);
}


/* TABLET */

@media (max-width: 980px) {

    .alpha-v2-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 680px) {

    /* Header mais limpo */

    .alpha-v2-header-location {
        display: none;
    }

    .alpha-v2-logo-box img {
        width: 115px;
        max-height: 42px;
    }


    /* Faz o CTA aparecer mais cedo */

    .alpha-v2-hero {
        padding-top: 92px;
    }

    .alpha-v2-hero-text {
        margin-top: 14px;
    }

    .alpha-v2-benefits {
        margin-top: 17px;
        margin-bottom: 17px;
        gap: 7px;
    }

    .alpha-v2-microcopy {
        margin-top: 10px;
        font-size: 10px;
        line-height: 1.45;
    }


    /* Enquadramento da profissional */

    .alpha-v2-photo-frame > img {
        object-position: center 18%;
    }


    /* Prova social / confiança */

    .alpha-v2-trust-grid {
        grid-template-columns: 1fr;
    }


    /* Galeria mais curta para reduzir rolagem */

    .alpha-v2-gallery figure,
    .alpha-v2-gallery figure:first-child {
        height: 300px;
    }

}


/* ==================================================
   ALPHA V2 - CORREÇÃO DE FOTOS E RODAPÉ
   ================================================== */


/* Hero: mantém rosto/corpo bem enquadrados */
.alpha-v2-photo-frame > img {
    object-fit: cover;
    object-position: center 18%;
}


/* Foto do bloco "Por que escolher" */
.alpha-v2-why-photo img {
    object-fit: cover;
    object-position: center center;
}


/* Galeria */
.alpha-v2-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alpha-v2-gallery figure:nth-child(1) img {
    object-position: center center;
}

.alpha-v2-gallery figure:nth-child(2) img {
    object-position: center center;
}

.alpha-v2-gallery figure:nth-child(3) img {
    object-position: center center;
}


/* CORREÇÃO DA LOGO NO RODAPÉ
   A logo é branca/transparente. O fundo branco anterior
   fazia a marca desaparecer. */
.alpha-v2-footer img {
    width: 145px;
    max-height: 58px;
    height: auto;
    padding: 0 !important;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    background: transparent !important;
    border-radius: 0 !important;
}


/* Mobile */
@media (max-width: 680px) {

    .alpha-v2-photo-frame > img {
        object-position: center 15%;
    }

    .alpha-v2-why-photo img {
        object-position: center top;
    }

    .alpha-v2-gallery figure,
    .alpha-v2-gallery figure:first-child {
        height: 290px;
    }

    .alpha-v2-footer img {
        width: 125px;
        max-height: 50px;
    }

}

/* ==================================================
   ALPHA V2 - CRÉDITO BORA FACILITAR
   ================================================== */

.alpha-v2-dev-credit {
    background: #232323;
    padding: 28px 20px 32px;
    text-align: center;
}

.alpha-v2-dev-title {
    color: #b8b8b8;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.alpha-v2-dev-logo-box {
    width: 98px;
    height: 98px;
    margin: 0 auto;
    background: #f2f2f2;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.alpha-v2-dev-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 680px) {
    .alpha-v2-dev-credit {
        padding: 24px 16px 28px;
    }

    .alpha-v2-dev-title {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .alpha-v2-dev-logo-box {
        width: 88px;
        height: 88px;
    }
}
