/* ============================================
   HOME.CSS — MEU SITE PRÁTICO
   Estilos exclusivos da Landing Page
   ============================================ */

/* ---- Animated Background Orbs ---- */
.page-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: orb-drift 18s ease-in-out infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #635BFF 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-duration: 20s;
}

.orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #00D4AA 0%, transparent 70%);
    top: 30%;
    right: -120px;
    animation-duration: 25s;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(10, 37, 64, 0.8) 0%, transparent 70%);
    bottom: 10%;
    left: 25%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes orb-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.04);
    }

    100% {
        transform: translate(-15px, 15px) scale(0.97);
    }
}

/* Floating geometric shapes */
.geo-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo {
    position: absolute;
    animation: geo-spin linear infinite;
}

.geo-ring {
    border-radius: 50%;
    border: 2px solid #635BFF;
    opacity: 0.07;
}

.geo-sq {
    background: #00D4AA;
    opacity: 0.07;
    transform-origin: center;
}

@keyframes geo-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   HERO — CENTRALIZADO & DRAMÁTICO
   ============================================ */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-inner {
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    color: #0A2540;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.gradient-word {
    background: linear-gradient(135deg, #635BFF 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #475569;
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #635BFF, #4F46E5);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 17px 36px;
    border-radius: 999px;
    box-shadow: 0 8px 30px -6px rgba(99, 91, 255, 0.55);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px -8px rgba(99, 91, 255, 0.65);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: #0A2540;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 17px 36px;
    border-radius: 999px;
    border: 1.5px solid #E2E8F0;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: white;
    border-color: #CBD5E1;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    color: #64748B;
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-trust-strip span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-strip i {
    color: #10b981;
}

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.35;
    color: #0A2540;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scroll-bounce 2.4s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================
   SECTION SHARED HEADER
   ============================================ */
.section {
    position: relative;
    z-index: 2;
    padding: 10px 0;
    background: transparent;
}

.section-light {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
}

.section-dark-alt {
    background: rgba(246, 249, 252, 0.75);
    backdrop-filter: blur(6px);
}

.sh {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.sh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #635BFF;
    background: rgba(99, 91, 255, 0.09);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.sh-title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #0A2540;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.sh-sub {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.65;
}

/* ============================================
   BENEFÍCIOS — BENTO VIVO
   ============================================ */
.bento-vivo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .bento-vivo {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-vivo {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-vivo .bv-wide {
        grid-column: span 3;
    }
}

.bv-card {
    background: white;
    border-radius: 22px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.07);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--card-color-a, #635BFF), var(--card-color-b, #00D4AA));
    opacity: 0;
    transition: opacity 0.3s;
}

.bv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px -10px rgba(0, 0, 0, 0.1);
}

.bv-card:hover::before {
    opacity: 1;
}

.bv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.bv-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 8px;
}

.bv-card p {
    color: #64748B;
    font-size: 0.93rem;
    line-height: 1.65;
}

/* Wide card — suporte */
.bv-card.bv-wide {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    border: none;
}

@media (max-width: 767px) {
    .bv-card.bv-wide {
        flex-direction: column;
        text-align: center;
    }
}

.bv-card.bv-wide h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.bv-card.bv-wide p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.bv-card.bv-wide .bv-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #00D4AA;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
}

.bv-card.bv-wide::before {
    height: 0;
}

/* ============================================
   COMO FUNCIONA — 3 PASSOS COM VIDA
   ============================================ */
.steps-track {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .steps-track {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: flex;
        align-items: flex-start;
        padding-top: 40px;
        flex-shrink: 0;
    }

    .step-connector-line {
        width: 72px;
        height: 2px;
        background: linear-gradient(90deg, #635BFF, #00D4AA);
        position: relative;
    }

    .step-connector-line::after {
        content: '';
        position: absolute;
        right: -6px;
        top: -5px;
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 10px solid #00D4AA;
    }
}

.step-bubble {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, #635BFF, #00D4AA);
    color: white;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px -6px rgba(99, 91, 255, 0.38);
    flex-shrink: 0;
    transition: all 0.35s;
}

.step-item:hover .step-bubble {
    transform: scale(1.08);
    box-shadow: 0 18px 36px -8px rgba(99, 91, 255, 0.5);
}

.step-card-body {
    background: white;
    border-radius: 20px;
    padding: 26px 22px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.07);
    width: 100%;
    transition: all 0.3s;
}

.step-item:hover .step-card-body {
    border-color: rgba(99, 91, 255, 0.22);
    box-shadow: 0 10px 28px -8px rgba(99, 91, 255, 0.1);
}

.step-number-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #635BFF;
    margin-bottom: 7px;
}

.step-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 9px;
}

.step-card-body p {
    color: #64748B;
    font-size: 0.91rem;
    line-height: 1.65;
}

/* Mobile: steps horizontal layout */
@media (max-width: 767px) {
    .step-item {
        flex-direction: row;
        text-align: left;
        gap: 18px;
        align-items: flex-start;
        padding: 0;
    }

    .step-bubble {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .step-card-body {
        padding: 18px;
    }
}

/* ============================================
   MODELOS — CARDS & BOTÕES
   ============================================ */
.modelos-grid-new {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}

@media (min-width: 580px) {
    .modelos-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modelos-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modelo-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.07);
    transition: all 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.modelo-card-new:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 48px -12px rgba(99, 91, 255, 0.18);
    border-color: rgba(99, 91, 255, 0.28);
}

.modelo-thumb-new {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    overflow: hidden;
    position: relative;
}

.modelo-thumb-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.modelo-card-new:hover .modelo-thumb-new img {
    transform: scale(1.06);
}

.modelo-tag-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    padding: 3px 11px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0A2540;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modelo-info-new {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modelo-info-new h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 6px;
}

.modelo-info-new p {
    color: #64748B;
    font-size: 0.83rem;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.modelo-btns {
    display: flex;
    gap: 8px;
}

.mbtn {
    flex: 1;
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 0.83rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.22s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    line-height: 1;
}

.mbtn-ghost {
    background: #F1F5F9;
    color: #0A2540;
}

.mbtn-ghost:hover {
    background: #E2E8F0;
}

.mbtn-accent {
    background: linear-gradient(135deg, #635BFF, #4F46E5);
    color: white;
    box-shadow: 0 4px 14px -4px rgba(99, 91, 255, 0.5);
}

.mbtn-accent:hover {
    background: linear-gradient(135deg, #4F46E5, #3730A3);
    box-shadow: 0 6px 20px -4px rgba(99, 91, 255, 0.65);
    transform: translateY(-1px);
}

/* Botão Catálogo */
.btn-catalogo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #635BFF;
    color: #635BFF;
    background: transparent;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 38px;
    border-radius: 999px;
    transition: all 0.28s;
    text-decoration: none;
}

.btn-catalogo:hover {
    background: #635BFF;
    color: white;
    box-shadow: 0 8px 24px -6px rgba(99, 91, 255, 0.45);
    transform: translateY(-2px);
}

/* ============================================
   PREÇOS
   ============================================ */
.pricing-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 768px) {
    .pricing-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.price-panel {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.price-panel:hover {
    transform: translateY(-4px);
}

.price-panel-light {
    background: white;
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.07);
}

.price-panel-dark {
    background: linear-gradient(140deg, #0A2540 0%, #1A3B5D 100%);
    color: white;
    box-shadow: 0 20px 50px -12px rgba(10, 37, 64, 0.35);
}

.price-panel-dark::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 91, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.price-eyebrow {
    display: inline-flex;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.price-eyebrow-light {
    background: rgba(99, 91, 255, 0.09);
    color: #635BFF;
}

.price-eyebrow-dark {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.price-panel h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.price-panel-dark h3 {
    color: white;
}

.price-panel-light h3 {
    color: #0A2540;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 14px 0;
    letter-spacing: -0.03em;
}

.price-panel-dark .price-amount {
    color: white;
}

.price-panel-light .price-amount {
    color: #0A2540;
}

.price-currency {
    font-size: 1.2rem;
    vertical-align: super;
    font-weight: 700;
    opacity: 0.65;
}

.price-period {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.55;
}

.price-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 22px;
}

.price-panel-dark .price-desc {
    color: rgba(255, 255, 255, 0.68);
}

.price-panel-light .price-desc {
    color: #64748B;
}

.price-feats {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-feats li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.91rem;
}

.price-panel-dark .price-feats li {
    color: rgba(255, 255, 255, 0.82);
}

.price-panel-light .price-feats li {
    color: #475569;
}

.feat-check {
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.62rem;
    color: #10b981;
}

.btn-price-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #635BFF, #4F46E5);
    color: white;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 15px;
    border-radius: 13px;
    text-decoration: none;
    box-shadow: 0 6px 20px -6px rgba(99, 91, 255, 0.55);
    transition: all 0.28s;
    width: 100%;
}

.btn-price-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(99, 91, 255, 0.65);
}

.pricing-disc {
    max-width: 860px;
    margin: 22px auto 0;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 16px;
    padding: 18px 24px;
    font-size: 0.87rem;
    color: #475569;
    line-height: 1.6;
}

.pricing-disc strong {
    color: #0A2540;
}

/* ============================================
   MOBILE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {

    /* Orbs muito mais sutis no mobile para não atrapalhar leitura */
    .orb {
        opacity: 0.18;
        filter: blur(60px);
    }

    .geo {
        opacity: 0.04;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-scroll-hint {
        display: none;
    }

    .section {
        padding: 64px 0;
    }

    .sh {
        margin-bottom: 44px;
    }

    .price-panel {
        padding: 28px 24px;
    }

    .price-amount {
        font-size: 2.6rem;
    }

    /* Guarantee strip empilha no mobile */
    .guarantee-strip {
        flex-direction: column;
        gap: 24px;
        padding: 28px 20px;
    }

    .guarantee-divider {
        width: 100%;
        height: 1px;
        background: rgba(99, 91, 255, 0.12);
    }
}

/* ============================================
   GUARANTEE STRIP
   ============================================ */
.guarantee-strip {
    max-width: 860px;
    margin: 24px auto 0;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.06);
}

.guarantee-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.1), rgba(0, 212, 170, 0.1));
    color: #635BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.guarantee-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 3px;
}

.guarantee-item span {
    font-size: 0.82rem;
    color: #64748B;
    line-height: 1.5;
}

.guarantee-divider {
    width: 1px;
    height: 52px;
    background: rgba(99, 91, 255, 0.12);
    flex-shrink: 0;
}

/* ============================================
   HEADER — MOBILE FIX
   ============================================ */
/* O header-inner já é flex com space-between no app-design.css.
   O menu-toggle precisa estar visível e alinhado ao lado do btn-nav-cta */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--color-primary, #0A2540);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(99, 91, 255, 0.08);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}