/* =============================================
   CLINIQO — style.css
   Todas as classes nomeadas para edição no Pinegrow
   ============================================= */
/* VARIÁVEIS */
:root {
    --color-navy: #080F1C;
    --color-navy-2: #162035;
    --color-green: #3DDC84;
    --color-green-2: #2BC56E;
    --color-brand: #2D6B5E;
    --color-brand-light: #E8F5EE;
    --color-white: #FFFFFF;
    --color-offwhite: #ECEEED;
    --color-mint: #F0F7F4;
    --color-text: #0F1A2E;
    --color-muted: #5A6A7A;
    --color-border: rgba(15, 26, 46, 0.1);
    --font: 'Poppins', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--color-offwhite);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

em {
    font-style: italic;
}

/* UTILIDADES */
.text--green {
    color: var(--color-green);
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--center {
    text-align: center;
}

/* GRID */
.grid {
    display: grid;
    gap: 2rem;
}

.grid--2col {
    grid-template-columns: 1fr 1fr;
}

.grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.grid--gap-xl {
    gap: 4rem;
}

.grid--valign-center {
    align-items: center;
}

/* SEÇÃO BASE */
.section {
    padding: 4rem 2rem;
}

.section--dark {
    background: var(--color-navy);
}

.section--white {
    background: var(--color-white);
    font-weight: normal;
}

.section--offwhite {
    background: var(--color-offwhite);
}

.section--mint {
    background: var(--color-navy);
}

.section-header {
    margin-bottom: 0;
}

.section-header--center {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 0;
}

.section-tag {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-green-2);
    margin-bottom: 0.75rem;
}

.section-tag--light {
    color: rgba(61, 220, 132, 0.65);
}

.section-title {
    font-weight: 600;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    color: var(--color-green);
    font-weight: 300;
}

.section-title--white {
    color: var(--color-white);
}

.section--mint .section-title {
    color: var(--color-white);
}

.section-title--narrow {
    max-width: 440px;
    margin: 0 auto;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
}

.section-sub--light {
    color: rgba(255, 255, 255, 0.5);
}

.section-sub--center {
    margin: 0 auto;
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 0.85rem 1.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn--primary {
    background: var(--color-green);
    color: var(--color-navy);
    border-color: var(--color-green);
}

.btn--primary:hover {
    background: var(--color-green-2);
    border-color: var(--color-green-2);
    transform: translateY(-1px);
}

.btn--outline-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline-white:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

/* BADGES */
.badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    margin-top: 4px;
}

.badge--brand {
    background: var(--color-brand);
    color: var(--color-white);
}

.badge--dark {
    background: #1A4A40;
    color: var(--color-white);
}

/* ÍCONES SVG */
.icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon--check {
    width: 10px;
    height: 10px;
    stroke-width: 2.5;
}

/* =============================================
   NAV
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 26, 46, 0.96);
    backdrop-filter: blur(16px);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo {
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.nav__logo strong {
    font-weight: 700;
}

.nav__links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav__link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__cta {
    background: var(--color-green);
    color: var(--color-navy);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.2s;
}

.nav__cta:hover {
    background: var(--color-green-2);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-navy);
}

.hero__left {
    position: relative;
    z-index: 2;
    padding: 7rem 3rem 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(61, 220, 132, 0.12);
    color: var(--color-green);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    width: fit-content;
}

.hero__tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-green);
    display: block;
}

.hero__title {
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.hero__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

.hero__btns {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.hero__metrics {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 1%;
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-navy) 0%, var(--color-navy) 20%, transparent 57%);
    pointer-events: none;
}

/* MÉTRICAS HERO */
.metric {
    display: flex;
    flex-direction: column;
}

.metric__value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-green);
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0px;
}

.metric__label {
    color: rgba(255, 255, 255, 0.95);
    margin-top: 3px;
    font-weight: 400;
    text-align: center;
    font-size: 0.8rem;
}

/* =============================================
   PROBLEMA
   ============================================= */
.problem__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 0.5px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
}

.problem-card__icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(61, 220, 132, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-green);
}

.problem-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.problem-card__text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    font-weight: 300;
}

/* =============================================
   SOLUÇÃO
   ============================================= */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.checklist__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--color-muted);
    font-weight: 300;
}

.checklist__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-brand);
}

.flow-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: #000000;
    font-weight: bold;
    background-color: #edffed;
}

.flow-card__label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-brand);
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: block;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-bottom: 0.5px solid rgba(45, 107, 94, 0.12);
}

.flow-step--last {
    border-bottom: none;
    padding-bottom: 0;
}

.flow-step__num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-brand);
    color: var(--color-white);
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.flow-step__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.flow-step__text {
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* =============================================
   COMO FUNCIONA
   ============================================= */
.step-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 0.5px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.step-card__num {
    position: absolute;
    top: -8px;
    right: 8px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(61, 220, 132, 0.45);
    line-height: 1;
    pointer-events: none;
}

.step-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-brand);
}

.step-card__title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.step-card__text {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* =============================================
   BENEFÍCIOS
   ============================================= */
.benefit-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: var(--color-offwhite);
    border: 0.5px solid var(--color-border);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--color-brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-brand);
}

.benefit-card__num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-brand);
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
}

.benefit-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

.benefit-card__text {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 0.3rem;
    line-height: 1.5;
    font-weight: 300;
}

/* =============================================
   ESPECIALIDADES — NUVEM
   ============================================= */
.specialty-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spec-tag {
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: default;
}

.spec-tag:hover {
    background: var(--color-brand);
    color: var(--color-white);
    border-color: var(--color-brand);
}

.spec-tag--large {
    font-size: 0.9rem;
    padding: 0.65rem 1.3rem;
    border-width: 2px;
    border-color: var(--color-green);
    background: rgba(61, 220, 132, 0.12);
    color: var(--color-green);
}

.specialty-note {
    margin-top: 2.5rem;
    font-size: 0.92rem;
    color: var(--color-white);
    font-weight: 300;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.specialty-note strong {
    color: var(--color-green);
    font-weight: 600;
}

/* =============================================
   FUNIL
   ============================================= */
.funnel {
    display: flex;
    flex-direction: column;
}

.funnel__stage {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 0.5px solid var(--color-border);
    margin-bottom: -0.5px;
    background: var(--color-white);
}

.funnel__stage:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.funnel__stage--last {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.funnel__label {
    font-size: 0.8rem;
    font-weight: 500;
    min-width: 160px;
}

.funnel__bar-wrap {
    flex: 1;
    height: 7px;
    background: var(--color-brand-light);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.funnel__bar {
    height: 100%;
    background: var(--color-brand);
    border-radius: var(--radius-pill);
}

.funnel__bar--100 {
    width: 100%;
}

.funnel__bar--88 {
    width: 88%;
}

.funnel__bar--74 {
    width: 74%;
}

.funnel__bar--63 {
    width: 63%;
}

.funnel__bar--55 {
    width: 55%;
}

.funnel__pct {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-brand);
    min-width: 46px;
    text-align: right;
}

.funnel__note {
    font-size: 0.72rem;
    color: var(--color-muted);
    margin-top: 0.75rem;
    font-weight: 300;
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    border: 0.5px solid var(--color-border);
}

.testimonial-card--pending {
    opacity: 0.4;
    border-style: dashed;
}

.testimonial-card__stars {
    color: var(--color-brand);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.testimonial-card__quote {
    font-style: italic;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.testimonial-card__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-brand);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
}

.testimonial-card__role {
    font-size: 0.72rem;
    color: var(--color-muted);
    font-weight: 300;
    display: block;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
}

.nav__whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #FFFFFF;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.nav__whatsapp:hover {
    background: #1ebe5d;
}

.cta-section__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--color-navy);
    border-top: 0.5px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem 1.5rem;
}

.footer__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    margin-bottom: 0.4rem;
}

.footer__company {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    margin-bottom: 1.25rem;
    display: block;
}

.footer__address {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.7;
    font-style: normal;
}

.footer__col-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 1rem;
    display: block;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--color-white);
}

.footer__contact-item {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin-bottom: 0.5rem;
    display: block;
}

.footer__contact-item a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer__contact-item a:hover {
    color: var(--color-white);
}

.footer__bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
    transition: color 0.2s;
}

.footer__logo {
    height: 80px;
    width: auto;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.footer__slx {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-slx {
    height: 200px;
    width: auto;
    opacity: 1;
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    .nav {
        padding: 1rem 1.25rem;
    }

    .nav__logo {
        font-size: 1.1rem;
    }

    .nav__links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero__right {
        display: none;
    }

    .hero__left {
        padding: 6rem 1.25rem 3rem;
        max-width: 100%;
    }

    .hero__title {
        font-size: 1.9rem;
    }

    .hero__tag {
        max-width: 90%;
        font-size: 0.62rem;
    }

    .hero__sub {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .hero__btns {
        flex-direction: column;
    }

    .hero__btns .btn {
        width: 100%;
        text-align: center;
    }

    .hero__metrics {
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .grid--2col {
        grid-template-columns: 1fr;
    }

    .grid--3col {
        grid-template-columns: 1fr;
    }

    .grid--gap-xl {
        gap: 2rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__slx {
        justify-content: flex-start;
    }

    .footer__logo-slx {
        height: 80px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.highlight {
    color: #22c55e;
}
}