﻿:root {
    --bg-deep-blue: #0f172a;
    --bg-card: #1e293b;
    --accent-beige: #eae8e4;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);

    --transition-smooth: all 0.35s var(--ease-saas);
    --ease-saas: cubic-bezier(0.2, 0.8, 0.2, 1);

    /* spacing system */
    --space-xs: 6px;
    --space-sm: 12px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 96px;

    /* radius system */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* shadows */
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.4);
    /* navbar height used to offset fixed header (adjust if header height changes) */
    --navbar-offset-lg: 100px;
    --navbar-offset-sm: 86px;
}
/* ══════════════════════════════════════
   LOGIN
══════════════════════════════════════ */
body.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.login-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(234, 232, 228, 0.05), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(234, 232, 228, 0.12);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
    .login-card {
        margin: 1.5rem;
        padding: 2.25rem 1.75rem;
    }
}

.login-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

/* escopo login para não conflitar com .kicker-line global */
.login-kicker .kicker-line {
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: rgba(234, 232, 228, 0.3);
}

.login-kicker .kicker-text {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(234, 232, 228, 0.55);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.login-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.35rem, 4vw, 1.65rem);
    font-weight: 400;
    text-align: center;
    color: var(--accent-beige);
    margin-bottom: 2.25rem;
    letter-spacing: 0.5px;
}

.login-alert {
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    color: #f87171;
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.75rem;
    letter-spacing: 0.3px;
}

.login-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
    font-weight: 600;
}

.login-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #fff;
    padding: 12px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.4s var(--ease-saas);
}

.login-input:focus {
    border-bottom-color: var(--accent-beige);
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.88rem;
}

.login-btn {
    width: 100%;
    margin-top: 2.25rem;
    background-color: var(--accent-beige);
    color: var(--bg-deep-blue);
    border: none;
    border-radius: 0;
    padding: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s var(--ease-saas);
}

.login-btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.login-btn:active {
    transform: translateY(0);
}

/* =========================
   BASE SYSTEM
========================= */

body {
    background-color: var(--bg-deep-blue);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /* Corta qualquer elemento que tente sair pela lateral */
    position: relative;
}

section {
    width: 100%;
    overflow: hidden;
    /* Garante que animações internas NÃO quebrem a seção */
}

h1,
h2,
.custom-serif {
    font-family: 'Cinzel', serif;
    letter-spacing: -1px;
}

.lead {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(234, 232, 228, 0.05), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* =========================
   TYPO
========================= */

.text-kicker {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.text-body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
}

/* =========================
   HERO
========================= */

.hero-kicker {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.kicker-line {
    width: 40px;
    height: 1px;
    background: var(--accent-beige);
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.hero-title-italic {
    font-style: italic;
    opacity: 0.55;
}

.hero-description {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-weight: 300;
}

/* =========================
   MEDIA / BADGE
========================= */

.hero-media {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
    /* badge fica contido, não vaza */
    border-radius: 18px;
    /* arredonda o card inteiro */
}

.hero-photo-placeholder {
    aspect-ratio: 4/5;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.06);
    /* sem min-height fixo — a proporção cuida do tamanho */
}

@media (min-width: 992px) {
    .hero-media {
        max-width: 460px;
        margin: 0 0 0 auto;
    }
}

@media (max-width: 767px) {
    .hero-media {
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .hero-media {
        max-width: 100%;
        border-radius: 14px;
    }

    .hero-photo-placeholder {
        border-radius: 12px;
    }
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(234, 232, 228, 0.14), transparent 38%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.hero-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.badge-experience {
    position: absolute;
    bottom: 16px;
    left: 16px;

    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(234, 232, 228, 0.18);
    border-radius: 10px;

    padding: 10px 14px;
    box-shadow: var(--shadow-sm);

    /* nunca ultrapasse o card */
    max-width: calc(100% - 32px);
}

.badge-number {
    display: block;
    font-size: 0.82rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
}

.badge-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 2px;
    white-space: nowrap;
}

/* em mobile o badge some — a info já está na seção "Sobre" */
@media (max-width: 991px) {
    .badge-experience {
        bottom: 12px;
        left: 12px;
        padding: 8px 12px;
    }

    .badge-number {
        font-size: 0.75rem;
    }

    .badge-label {
        font-size: 0.52rem;
    }
}

/* =========================
   NAVBAR
========================= */

.navbar-premium {
    background: rgba(15, 23, 42, 0.78) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    /* aumentado de 14px para acomodar logo maior */

    transition: var(--transition-smooth);
    z-index: 9999;
}

/* Ensure fixed navbar doesn't overlap hero / top content.
   Use responsive offsets so mobile header doesn't hide the CRP text. */
@media (max-width: 991px) {
    body {
        padding-top: var(--navbar-offset-sm);
    }
}

@media (min-width: 992px) {
    body {
        padding-top: var(--navbar-offset-lg);
    }
}

.logo-premium {
    max-height: 64px;
    /* desktop: legível com texto */
    width: auto;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .logo-premium {
        max-height: 52px;
        /* mobile: proporcional ao espaço disponível */
    }
}

@media (max-width: 480px) {
    .logo-premium {
        max-height: 44px;
        /* telas muito pequenas: cabe sem apertar */
    }
}

.navbar-brand:hover .logo-premium {
    transform: scale(1.03);
}

/* NAV LINKS */

.navbar-premium .nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;

    color: rgba(255, 255, 255, 0.70) !important;

    position: relative;
    padding: 10px 4px;

    transition: var(--transition-smooth);
}

.navbar-premium .nav-link:hover {
    color: #fff !important;
}

.navbar-premium .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;

    width: 0%;
    height: 2px;
    background: var(--accent-beige);

    border-radius: 10px;
    transition: var(--transition-smooth);
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
    width: 100%;
}

/* =========================
   BUTTON
========================= */

.btn-premium {
    background: linear-gradient(135deg, #eae8e4, #ffffff);
    color: #0f172a !important;

    border-radius: 10px;
    padding: 12px 26px;

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    transition: var(--transition-smooth);

    box-shadow: var(--shadow-sm);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-premium {
    background: transparent;
    color: var(--accent-beige);

    border: 1px solid rgba(234, 232, 228, 0.35);
    border-radius: 10px;

    padding: 12px 26px;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition-smooth);
}

/* hover com destaque real */
.btn-outline-premium:hover {
    background: rgba(234, 232, 228, 0.08);
    border-color: var(--accent-beige);
    color: #ffffff;

    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* foco acessÃ­vel */
.btn-outline-premium:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(234, 232, 228, 0.2);
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 991px) {

    .navbar-mobile-premium {
        background: rgba(30, 41, 59, 0.98);
        backdrop-filter: blur(18px);

        padding: 22px;
        margin-top: 14px;

        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow: var(--shadow-lg);
    }

    .navbar-mobile-premium .nav-link {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        padding: 14px !important;
        text-align: center;
    }

    .btn-premium {
        width: 100%;
        margin-top: 10px;
    }
}

/* =========================
   UI ELEMENTS
========================= */

.navbar-toggler {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.bg-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    box-shadow: var(--shadow-lg);
}

/* =========================
   REVEAL SYSTEM (CORRIGIDO)
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--ease-saas);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   SECTION SOBRE (CORRIGIDA)
========================= */


.kicker-text-dark {
    color: #0f172a;
    opacity: 0.7;
    font-weight: 600;
}

.kicker-line.kicker-dark {
    background: #0f172a;
    opacity: 0.6;
}

section {
    position: relative;
}

#sobre {
    padding-top: 0;
    /* gradiente removido — causava efeito branco sobre texto branco */
}

/* HERO: cobre o padding-top do body (offset da navbar fixa)
   sem deixar faixa escura entre navbar e conteúdo */
[data-section="hero"] {
    min-height: 100vh;
    margin-top: calc(-1 * var(--navbar-offset-lg));
    padding-top: var(--navbar-offset-lg);
    background-color: var(--bg-deep-blue);
    overflow: visible;
}

@media (max-width: 991px) {
    [data-section="hero"] {
        margin-top: calc(-1 * var(--navbar-offset-sm));
        padding-top: var(--navbar-offset-sm);
    }

    [data-section="hero"] .container>.row {
        padding-top: 2rem;
    }
}

.bg-accent-light {
    background-color: var(--accent-beige);
}

.min-vh-75 {
    min-height: 75vh;
}

/* ══════════════════════════════════════════════
   SEÇÃO SOBRE — COLUNA DE IDENTIDADE (LOGOTIPO)
══════════════════════════════════════════════ */

/* Coluna pai: flex container para que o filho possa ocupar 100% da altura */
.sobre-identity-col {
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    background-color: #0f172a !important;
    display: flex;
    /* ← chave: filho com flex:1 vai ocupar toda a altura */
    flex-direction: column;
}

/* Bloco filho: cresce para preencher a coluna e centraliza o conteúdo */
.brand-identity-block {
    flex: 1;
    /* ← ocupa toda a altura disponível da coluna pai */
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* ← centraliza verticalmente de verdade */
    text-align: center;
    padding: 3rem 2.5rem;
    background-color: #0f172a;
}

/* Glow sutil */
.brand-identity-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(234, 232, 228, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.brand-identity-block::after {
    display: none !important;
}

/* LOGOTIPO */
.brand-identity-block .symbol-premium {
    position: relative !important;
    inset: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    width: 82% !important;
    max-width: 480px !important;
    height: auto !important;
    max-height: none !important;
    display: block;
    margin: 0 auto 1.75rem;
    border-radius: 0;
    z-index: 1;
    flex-shrink: 0;
}

/* Linha + texto */
.brand-identity-text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
}

.brand-identity-text::before {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: rgba(234, 232, 228, 0.18);
    margin: 0 auto 1.1rem;
}

.brand-identity-block .brand-name-display {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.72rem, 1.3vw, 0.92rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 5px;
    font-weight: 600;
    text-shadow: none;
}

.brand-identity-block .brand-subtext {
    display: block;
    font-size: clamp(0.58rem, 0.9vw, 0.7rem);
    letter-spacing: 2px;
    color: rgba(234, 232, 228, 0.45);
    text-transform: uppercase;
    font-style: normal;
}

/* Coluna de conteúdo (direita) */
.sobre-content-col {
    padding: 4rem 3.5rem;
}

/* Desktop */
@media (min-width: 992px) {

    .sobre-identity-col,
    .sobre-content-col {
        min-height: 75vh;
    }

    .brand-identity-block {
        padding: 4rem 3rem;
    }

    .brand-identity-block .symbol-premium {
        width: 80% !important;
        max-width: 500px !important;
    }

    .sobre-content-col {
        padding: 5rem 4rem;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .sobre-identity-col {
        min-height: 320px;
    }

    .brand-identity-block {
        padding: 2.5rem 2rem;
    }

    .brand-identity-block .symbol-premium {
        width: 75% !important;
        max-width: 340px !important;
        margin-bottom: 1.4rem;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .sobre-identity-col {
        min-height: 280px;
        position: sticky;
        /* ← gruda no topo ao rolar */
        top: 0;
        z-index: 2;
        align-self: flex-start;
        /* necessário para sticky funcionar em flex */
    }

    .brand-identity-block {
        padding: 2rem 1.5rem;
        justify-content: center;
        align-items: center;
    }

    .brand-identity-block .symbol-premium {
        width: 72% !important;
        max-width: 260px !important;
        margin-bottom: 1.2rem;
    }

    .brand-identity-text::before {
        width: 28px;
        margin-bottom: 0.9rem;
    }
}

/* TEXT DARK */

.text-dark {
    color: #0f172a !important;
}

.text-dark-muted {
    color: rgba(15, 23, 42, 0.7);
}

/* TAGS */

.info-tag {
    border: 1px solid rgba(15, 23, 42, 0.2);
    padding: 8px 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    color: #0f172a;
    transition: var(--transition-smooth);
}

.info-tag:hover {
    background: #0f172a;
    color: var(--accent-beige);
}

/* RESPONSIVE */

@media (max-width: 991px) {
    /* brand-name-display sizing é controlado pelas regras da .brand-identity-block abaixo */
}

.cta-whatsapp-block {
    margin-top: 10px;
}

/* .symbol-premium controlado dentro de .brand-identity-block */

.about-content-wrapper .about-description p {
    line-height: 1.9;
    margin-bottom: 1rem;
    color: rgba(15, 23, 42, 0.9);
}

/* Footer refinements to match premium UI */
.footer-minimal {
    border-top: 1px solid rgba(234, 232, 228, 0.04);
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.footer-credit {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.4px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 700;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.btn-whatsapp-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff !important;

    padding: 13px 26px;
    border-radius: var(--radius-md);

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;

    text-decoration: none;

    transition: var(--transition-smooth);

    box-shadow: var(--shadow-sm);
}

.btn-whatsapp-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-note {
    font-size: 0.7rem;
    color: rgba(15, 23, 42, 0.6);
}

.about-description p {
    color: rgba(15, 23, 42, 0.78);
    line-height: 1.8;
    font-weight: 400;
}

/* =========================
   SECTION "PRA QUEM Ã‰"
========================= */

.py-100 {
    padding: var(--space-xl) 0;
}

/* GRID PREMIUM (substitui border agressiva) */
.premium-grid {
    margin-top: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
}

/* CARD BASE */
.premium-card {
    padding: var(--space-lg);
    position: relative;

    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition: var(--transition-smooth);
}

/* remove borda direita Ãºltima coluna */
.premium-card:nth-child(3n) {
    border-right: none;
}

/* hover SaaS premium */
.premium-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
}

/* NUMERAÃ‡ÃƒO */
.card-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--accent-beige);
    opacity: 0.35;
    margin-bottom: var(--space-sm);
}

/* TITULO */
.card-title-premium {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
    color: var(--text-main);
}

/* TEXTO */
.card-text-premium {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-weight: 300;
}

/* RESPONSIVO */
@media (max-width: 767px) {

    .premium-card {
        border-right: none;
    }

    .premium-card {
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* =========================
   PROCESSO - SAAS CLEAN
========================= */

.process-section {
    background-color: var(--accent-beige);
    /* Garante que o fundo seja o bege claro */
    color: #0f172a;
    /* Garante que a cor padrÃ£o do texto na seÃ§Ã£o seja escura */
}

/* progress line */
.process-progress {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(15, 23, 42, 0.06);
}

.process-progress-bar {
    width: 100%;
    height: 0%;
    background: #0f172a;
    transition: height 0.2s linear;
}

/* SVG connector */
.process-svg {
    position: absolute;
    left: 0;
    top: 15%;
    width: 100%;
    height: 70%;
    pointer-events: none;

    z-index: 0;
    opacity: 0.15;
}

.process-wrapper {
    position: relative;
    z-index: 2;
}

.process-progress {
    z-index: 1;
}

.process-path {
    fill: none;
    stroke: rgba(15, 23, 42, 0.15);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* wrapper */
.process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 90px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* eixo central invisÃ­vel */
.process-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(15, 23, 42, 0.06);
    transform: translateX(-50%);
}

/* cada step ocupa largura total controlada */
.process-step {
    display: flex;
    justify-content: center;
}

/* conteÃºdo centralizado com largura limitada */
.process-content {
    width: 100%;
    max-width: 520px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* nÃºmero mantÃ©m identidade visual */
.process-number {
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    color: #0f172a;
    opacity: 0.15;
    /* Subi de 0.08 para 0.15 para ser visÃ­vel no bege */
    display: block;
    line-height: 1;
    transition: all 0.4s ease;
}

.process-step.active .process-number {
    opacity: 0.4;
    /* Fica bem mais nÃ­tido quando o usuÃ¡rio estÃ¡ lendo aquele passo */
    color: #0f172a;
    transform: scale(1.1);
}

/* TÃ­tulos dos Steps - ForÃ§ando visibilidade */
.process-title {
    color: #0f172a !important;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* DescriÃ§Ã£o dos Steps */
.process-text {
    color: rgba(15, 23, 42, 0.8) !important;
    /* Um cinza bem escuro para leitura confortÃ¡vel */
    font-size: 1rem;
    line-height: 1.6;
}

/* step */
.process-step {
    opacity: 1 !important;
    transform: none;
}

.process-step.active .process-title {
    color: #000 !important;
    /* Fica preto total no foco */
}

/* Ajuste do Header para garantir que apareÃ§a */
.process-section .hero-title {
    color: #0f172a !important;
}

/* Add comfortable lateral padding on small screens so content doesn't touch edges */
.process-section {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .process-section {
        padding-left: 0;
        padding-right: 0;
    }
}

.process-section .kicker-text-dark {
    color: #0f172a !important;
    font-weight: 600;
}

.reveal {
    opacity: 1;
    /* teste temporÃ¡rio */
}

/* active state (Apple feel) */
.process-step.active {
    opacity: 1;
    transform: translateX(10px);
}

/* number */
.process-number {
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    opacity: 0.08;
    display: block;
    margin-bottom: -10px;
    transition: all 0.4s ease;
}

.process-step.active .process-number {
    opacity: 0.18;
    transform: scale(1.05);
}

/* hover microinteraction */
.process-step:hover {
    transform: translateX(14px);
}

/*==========================
 Section Depoimentos 
 ===========================
 */
/* ── CARROSSEL ── */
.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 54px;
}

/* Altura fixa + fade suave entre slides */
.testimonial-carousel .carousel-inner {
    min-height: 320px;
    /* ajuste se precisar de mais espaço */
}

.testimonial-carousel .carousel-item {
    display: block;
    /* sobrescreve o display:none padrão do Bootstrap */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
    transform: translateY(6px);
}

.testimonial-carousel .carousel-item.active {
    position: relative;
    /* ocupa espaço no fluxo só quando ativo */
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ── INDICADORES ── */
.testimonial-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.testimonial-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(234, 232, 228, 0.5);
    background-color: transparent;
    opacity: 1;
}

.testimonial-indicators .active {
    background-color: var(--accent-beige);
}

/* ── CARD ── */
.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(234, 232, 228, 0.12);
    border-radius: 18px;
    padding: 60px 48px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
    transition: border-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* removeu o transform */
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: 'Cinzel', serif;
    color: var(--accent-beige);
    opacity: 0.14;
}

/* ── TEXTO ── */
.testimonial-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.75;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 30px;
    flex: 1;
    /* empurra o autor sempre para baixo */
}

/* ── AUTOR ── */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--accent-beige);
    text-transform: uppercase;
}

.author-meta {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.54);
    font-style: italic;
}

.testimonial-empty-state {
    border-style: dashed;
    opacity: 0.78;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .testimonial-carousel .carousel-inner {
        min-height: 420px;
    }

    .testimonial-card {
        padding: 28px 24px 32px;
        /* padding-top menor, as aspas saem do absolute */
        min-height: 380px;
    }

    /* aspas viram decoração de fluxo, não sobrepõem o texto */
    .testimonial-card::before {
        position: relative;
        display: block;
        top: auto;
        left: auto;
        font-size: 3.5rem;
        line-height: 1;
        margin-bottom: 8px;
        opacity: 0.25;
    }

    .testimonial-text {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

/* SECTION DE FAQ (PERGUNTAS FREQUENTES) */
/* SECTION DE FAQ (PERGUNTAS FREQUENTES) */

.faq-item {
    background: transparent !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-top: none !important;
}

.faq-item:first-child {
    border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}

/* botão */
.faq-button {
    background: transparent !important;
    color: #0f172a !important;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 25px 0 !important;
    box-shadow: none !important;
    position: relative;
}

/* remove estilo azul e fundo padrão do Bootstrap ao expandir */
.faq-button:not(.collapsed) {
    background: transparent !important;
    color: #0f172a !important;
    box-shadow: none !important;
}

/* remove ícone padrão bootstrap (setinha) */
.faq-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, content 0.3s ease;
}

/* estado aberto: troca o ícone para o símbolo de fechar (×) */
.faq-button:not(.collapsed)::after {
    content: '\00D7';
    transform: rotate(90deg);
    /* Opcional: dá um efeito de giro suave */
}

/* body */
.faq-body {
    padding: 0 0 25px 0 !important;
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Ajuste para suavizar a abertura (opcional) */
.accordion-collapse {
    transition: height 0.35s ease;
}

/* FOOTER */
/* FORMULÃRIO PREMIUM */
.premium-input {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    color: white !important;
    padding: 15px 0 !important;
    transition: all 0.4s ease !important;
}

.premium-input:focus {
    box-shadow: none !important;
    border-bottom-color: var(--accent-beige) !important;
}

.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* BOTÃƒO SUBMIT */
.btn-premium-submit {
    background-color: var(--accent-beige);
    color: var(--bg-deep-blue);
    border: none;
    border-radius: 0;
    padding: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.4s ease;
}

.btn-premium-submit:hover {
    background-color: white;
    transform: translateY(-3px);
}

/* ÃCONES DE CONTATO */
/* Container do Ã­cone com largura e altura fixas */
.contact-icon-box {
    width: 44px;
    /* Largura fixa garantida */
    height: 44px;
    /* Altura fixa para manter o quadrado perfeito */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    /* Tamanho do Ã­cone dentro da caixa */
    color: var(--accent-beige);
    flex-shrink: 0;
    /* Impede que o container esmague em telas pequenas */
}

/* Garante que o Ã­cone dentro da caixa se comporte como bloco centralizado */
.contact-icon-box i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-info-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════════════
   FOOTER — REDESIGN
══════════════════════════════════════════════ */

.footer-minimal {
    background-color: var(--bg-deep-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Faixa principal: logo + redes sociais */
.footer-main {
    padding: 2.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.6;
}

/* Ícones sociais */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    border-color: var(--accent-beige);
    color: var(--accent-beige);
    background: rgba(234, 232, 228, 0.06);
    transform: translateY(-2px);
}

/* Faixa de créditos: copyright + feito por */
.footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.footer-copyright {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-credit {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    /* era 0.28 — mais legível */
    letter-spacing: 0.4px;
    font-weight: 400;
}

.footer-credit a {
    color: rgba(234, 232, 228, 0.65);
    /* era 0.5 */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--accent-beige);
    text-decoration: none;
}

@media (max-width: 767px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 0;
        gap: 1.25rem;
    }

    .footer-logo {
        letter-spacing: 1.5px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.4rem;
        padding-bottom: 80px;
        /* espaço para o botão flutuante não cobrir */
    }
}

/* CTA botÃ£o Flutuante do WhatsApp */
/* BotÃ£o Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* Efeito de OndulaÃ§Ã£o (Pulse) para atrair o olhar */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: pulse-whatsapp 2s infinite;
    /* Adicione estas duas linhas abaixo */
    pointer-events: none;
    box-sizing: border-box;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        /* Se o scale for muito alto, ele empurra a largura da tela */
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* ============================
TOAST
===============================
*/
.toast-container-premium {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* TOAST BASE */
.toast-premium {
    min-width: 280px;
    max-width: 360px;

    padding: 14px 16px;
    border-radius: 14px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    background: rgba(30, 30, 30, 0.65);
    color: #fff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;

    opacity: 0;
    transform: translateY(20px) scale(0.96);

    transition:
        transform 0.35s cubic-bezier(.22, 1, .36, 1),
        opacity 0.35s ease,
        box-shadow 0.3s ease;
}

/* ENTRADA */
.toast-premium.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* HOVER MICROINTERACTION */
.toast-premium:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* TIPOS */
.toast-success {
    border-left: 4px solid #28a745;
}

.toast-error {
    border-left: 4px solid #dc3545;
}

.toast-warning {
    border-left: 4px solid #ffc107;
}

/* CONTEÃšDO */
.toast-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.toast-message {
    font-size: 13px;
    opacity: 0.85;
}

/* BOTÃƒO FECHAR */
.toast-close {
    background: transparent;
    border: none;
    color: #fff;
    opacity: 0.6;
    font-size: 16px;
    cursor: pointer;

    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/*======================================
ESTILOS DA TABELA DE ADMIN
=======================================*/
/* Container do Card */
.admin-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
}

/* EstilizaÃ§Ã£o da Tabela */
.custom-admin-table {
    border-collapse: separate;
    border-spacing: 0 10px;
    color: rgba(255, 255, 255, 0.8);
}

.custom-admin-table thead th {
    border: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--accent-beige);
    padding: 15px;
}

.custom-admin-table tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.custom-admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.005);
}

.custom-admin-table td {
    border: none;
    padding: 15px;
    font-size: 0.9rem;
}

/* Badges de Role */
.badge-role {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.role-super {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.role-admin {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

/* Switch Customizado */
.toggle-active-custom {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.toggle-active-custom:checked {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}

/* BotÃ£o Deletar */
.btn-action-delete {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-action-delete:hover {
    background: #dc3545;
    color: white;
}

.status-protected {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* Ajuste DataTables para Tema Dark */
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 5px;
    padding: 5px 10px;
}

/*============================
ESTILOS DO MODAL DE ADMIN 
=============================*/
/* Container Principal do Modal */
.premium-modal {
    background: rgba(15, 23, 42, 0.95) !important;
    /* Azul profundo quase opaco */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Header Customizado */
.modal-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* BotÃ£o de Fechar Customizado */
.btn-close-custom {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    line-height: 1;
    transition: 0.3s;
}

.btn-close-custom:hover {
    color: var(--accent-beige);
    transform: rotate(90deg);
}

/* Labels de Input Estilo SaaS */
.form-label-premium {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-beige);
    margin-bottom: 8px;
    display: block;
}

/* Reutilizando nossos Inputs da seÃ§Ã£o de contato */
.premium-modal .premium-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 0 !important;
    font-size: 0.95rem;
}

/* BotÃ£o Cancelar Minimalista */
.btn-modal-cancel {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: 20px;
    transition: 0.3s;
}

.btn-modal-cancel:hover {
    color: white;
}

/* =========================
   CMS VISUAL
========================= */
.cms-editing {
    outline: 2px solid rgba(234, 232, 228, 0.7);
    outline-offset: 4px;
    border-radius: 6px;
    cursor: text;
}

.cms-inline-control {
    width: 100%;
    min-width: min(420px, 100%);
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

textarea.cms-inline-control {
    resize: vertical;
}

.cms-current-value {
    min-height: 48px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    white-space: pre-wrap;
    line-height: 1.6;
}

[data-field][data-type="text"],
[data-field][data-type="link"],
#depoimentos [data-field] {
    transition: outline-color 0.2s ease, background-color 0.2s ease;
}

.admin-bar~[data-field][data-type="text"],
.admin-bar~[data-field][data-type="link"],
body:has(.admin-bar) [data-field][data-type="text"],
body:has(.admin-bar) [data-field][data-type="link"],
body:has(.admin-bar) #depoimentos [data-field] {
    cursor: pointer;
}

.admin-add-btn,
.admin-edit-image,
.admin-edit,
.admin-delete,
.admin-create-testimonial {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
    border-radius: 8px;
    min-width: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--shadow-sm);
    z-index: 20;
}

.admin-create-testimonial {
    min-height: 40px;
    padding: 0 18px;
    letter-spacing: 0.6px;
}

.admin-add-btn {
    position: absolute;
    top: 18px;
    right: 18px;
}

.admin-edit-image {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 14px;
}

.admin-edit,
.admin-delete {
    position: absolute;
    top: 14px;
}

.admin-edit {
    right: 58px;
}

.admin-delete {
    right: 14px;
}

.editable-image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* sobre-identity-col e brand-identity-block: ver bloco consolidado acima */