﻿/* ============================================
   POP HOSTING — Modern CSS Overlay (2026)
   Camada visual moderna sobre o template existente.
   Sem frameworks, 100% vanilla CSS.
   Inspirado em: valuehost.com.br
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
    /* Brand palette — consistente com #083e9b / #0948b3 / #1062fe do template */
    --pop-primary: #0a1e3d;
    --pop-primary-mid: #0d3068;
    --pop-primary-light: #1354a5;
    --pop-accent: #1062fe;
    --pop-accent-hover: #0948b3;
    --pop-green: #00c9a7;
    --pop-green-hover: #00a88a;

    /* Neutros */
    --pop-text: #1a202c;
    --pop-text-secondary: #4a5568;
    --pop-text-muted: #718096;
    --pop-bg: #f7f8fc;
    --pop-bg-alt: #eef1f8;
    --pop-white: #ffffff;
    --pop-border: #e2e8f0;
    --pop-border-light: #edf2f7;

    /* Sombras */
    --pop-shadow-xs: 0 1px 2px rgba(0, 0, 0, .04);
    --pop-shadow-sm: 0 2px 8px rgba(10, 30, 61, .06);
    --pop-shadow-md: 0 8px 24px rgba(10, 30, 61, .08);
    --pop-shadow-lg: 0 16px 48px rgba(10, 30, 61, .10);
    --pop-shadow-xl: 0 24px 56px rgba(10, 30, 61, .14);

    /* Raios e transição */
    --pop-radius: 12px;
    --pop-radius-lg: 16px;
    --pop-radius-xl: 20px;
    --pop-transition: all .3s cubic-bezier(.4, 0, .2, 1);

    --pop-star-color: #f59e0b;
}

/* ---------- Global Smooth & Transitions ---------- */
html {
    scroll-behavior: smooth;
}

.btn,
.card,
.single-promo-card,
.single-pricing-pack-2,
.single-service,
.single-review-wrap,
.title-with-icon-item a {
    transition: var(--pop-transition) !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--pop-shadow-md);
}

.card:hover,
.single-promo-card:hover,
.single-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--pop-shadow-lg);
}

.single-pricing-pack-2:hover {
    transform: translateY(-6px);
    box-shadow: var(--pop-shadow-xl);
}

/* Better focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--pop-accent);
    outline-offset: 2px;
}

/* =============================================
   STICKY HEADER — Glassmorphism & Premium
   ============================================= */

/* Fix: main-pop.css sets .fixed-top { top: auto !important } which causes a white gap at the top */
.fixed-top {
    top: 0 !important;
}

.main-header-menu-wrap {
    transition: background .35s ease, box-shadow .35s ease, padding .35s ease !important;
}

.main-header-menu-wrap.scrolled,
.main-header-menu-wrap.affix,
.bg-transparent.affix {
    background: rgba(10, 30, 61, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2) !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    padding: 0.5rem 0 !important;
    animation: slideHeaderDown .4s ease !important;
}

@keyframes slideHeaderDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Premium Account Button */
.btn-header-account {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.4rem;
    background: linear-gradient(135deg, var(--pop-green), var(--pop-green-hover));
    color: var(--pop-white) !important;
    font-weight: 700;
    font-size: .85rem;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--pop-transition);
    box-shadow: 0 4px 12px rgba(0, 201, 167, .25);
    white-space: nowrap;
}

.btn-header-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 201, 167, .35);
    filter: brightness(1.05);
}

.btn-header-account i {
    transition: var(--pop-transition);
}

.btn-header-account:hover i {
    transform: rotate(15deg);
}

/* Nav links styling */
.header-nav .custom-nav-link i {
    transition: var(--pop-transition);
}

.header-nav .custom-nav-link:hover i {
    color: var(--pop-green);
    transform: translateY(-1px);
}

.main-header-menu-wrap.scrolled .header-nav a.custom-nav-link {
    opacity: 1 !important;
}

/* =============================================
   HERO SECTION — Gradient moderno
   ============================================= */
.hero-modern {
    background: linear-gradient(145deg, #0a1e3d 0%, #0d3068 35%, #1354a5 70%, #1062fe 100%) !important;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

/* Decorative orbs */
.hero-modern::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 98, 254, .15) 0%, transparent 70%);
    top: -250px;
    right: -200px;
    pointer-events: none;
}

.hero-modern::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, .08) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    pointer-events: none;
}

.hero-headline {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: var(--pop-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.65;
    max-width: 520px;
}

/* --- Social Proof Bar --- */
.social-proof-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .88);
    font-size: .875rem;
    font-weight: 500;
}

.social-proof-item .check-mark {
    color: var(--pop-green);
    font-weight: 700;
    font-size: 1.05rem;
}

/* --- Hero CTAs --- */
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--pop-green);
    color: var(--pop-white);
    border: none;
    padding: .9rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 4px 16px rgba(0, 201, 167, .35);
    transition: var(--pop-transition);
}

.btn-hero-primary:hover {
    background: var(--pop-green-hover);
    color: var(--pop-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 201, 167, .45);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, .1);
    color: var(--pop-white);
    border: 2px solid rgba(255, 255, 255, .3);
    padding: .9rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--pop-transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .6);
    color: var(--pop-white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--pop-bg);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--pop-border);
}

.trust-bar-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--pop-text-secondary);
}

.trust-item strong {
    color: var(--pop-text);
    font-weight: 800;
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--pop-accent);
}

/* =============================================
   SERVICES SHOWCASE — Tabs + Product Cards
   ============================================= */
.services-showcase {
    background: var(--pop-white);
}

/* Service tabs nav */
.service-tabs-nav {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.service-tab {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    border: 2px solid var(--pop-border);
    border-radius: 30px;
    background: var(--pop-white);
    color: var(--pop-text-secondary);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--pop-transition);
}

.service-tab:hover {
    border-color: var(--pop-accent);
    color: var(--pop-accent);
}

.service-tab.active {
    background: linear-gradient(135deg, var(--pop-accent), var(--pop-accent-hover));
    border-color: transparent;
    color: var(--pop-white);
}

/* Tab panels */
.service-tab-panel {
    display: none;
    animation: fadeTabIn .35s ease;
}

.service-tab-panel.active {
    display: block;
}

@keyframes fadeTabIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product cards */
.product-card {
    background: var(--pop-white);
    border: 1px solid var(--pop-border);
    border-radius: var(--pop-radius-lg);
    padding: 2rem 1.75rem;
    transition: var(--pop-transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pop-shadow-xl);
    border-color: var(--pop-accent);
}

.product-card.featured {
    border: 2px solid var(--pop-accent);
    box-shadow: 0 8px 32px rgba(16, 98, 254, .12);
}

.product-card.featured:hover {
    box-shadow: 0 16px 48px rgba(16, 98, 254, .2);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pop-accent), var(--pop-accent-hover));
    color: var(--pop-white);
    font-size: .72rem;
    font-weight: 700;
    padding: .4rem 1.2rem;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.product-card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 98, 254, .1), rgba(16, 98, 254, .04));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
}

.product-icon i[data-lucide] {
    width: 26px;
    height: 26px;
    color: var(--pop-accent);
}

.product-card-header h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pop-text);
    margin-bottom: .25rem;
}

.product-tag {
    font-size: .72rem;
    font-weight: 600;
    color: var(--pop-accent);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.product-benefit {
    font-size: .9rem;
    color: var(--pop-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 0;
    font-size: .85rem;
    color: var(--pop-text-secondary);
    border-bottom: 1px solid var(--pop-border-light);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i[data-lucide] {
    color: var(--pop-green);
    flex-shrink: 0;
}

.product-price {
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}

.product-price .price-label {
    display: block;
    font-size: .72rem;
    color: var(--pop-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .25rem;
}

.product-price .price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pop-primary-mid);
}

.product-price .price-period {
    font-size: .85rem;
    font-weight: 400;
    color: var(--pop-text-muted);
}

.btn-product {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--pop-accent), var(--pop-accent-hover));
    color: var(--pop-white);
    border: none;
    padding: .8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: var(--pop-transition);
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 98, 254, .3);
    color: var(--pop-white);
    text-decoration: none;
}

.btn-see-all {
    display: inline-block;
    color: var(--pop-accent);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: var(--pop-transition);
}

.btn-see-all:hover {
    color: var(--pop-accent-hover);
    text-decoration: none;
}

/* =============================================
   ADVANTAGES SECTION — Dark
   ============================================= */
.advantages-section {
    background: linear-gradient(145deg, #0a1e3d 0%, #0d3068 50%, #1354a5 100%);
    padding: 80px 0;
}

.text-white-70 {
    color: rgba(255, 255, 255, .7) !important;
}

.advantage-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--pop-radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: var(--pop-transition);
    height: 100%;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, .25);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pop-accent), var(--pop-green));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.advantage-icon i[data-lucide] {
    width: 30px;
    height: 30px;
    color: var(--pop-white);
}

.advantage-card h4 {
    color: var(--pop-white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .75rem;
}

.advantage-card p {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advantage-link {
    color: var(--pop-green);
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    transition: var(--pop-transition);
}

.advantage-link:hover {
    color: var(--pop-white);
    text-decoration: none;
}

/* =============================================
   HOW IT WORKS — 3 Steps
   ============================================= */
.how-it-works {
    background: var(--pop-bg);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 0 1 260px;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pop-accent), var(--pop-accent-hover));
    color: var(--pop-white);
    font-weight: 800;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--pop-white);
    border: 2px solid var(--pop-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.25rem;
    transition: var(--pop-transition);
}

.step-card:hover .step-icon {
    border-color: var(--pop-accent);
    box-shadow: 0 4px 16px rgba(16, 98, 254, .15);
}

.step-icon i[data-lucide] {
    width: 30px;
    height: 30px;
    color: var(--pop-accent);
}

.step-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pop-text);
    margin-bottom: .5rem;
}

.step-card p {
    font-size: .85rem;
    color: var(--pop-text-muted);
    line-height: 1.55;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 4rem;
    color: var(--pop-border);
}

.step-connector i[data-lucide] {
    width: 24px;
    height: 24px;
}

/* =============================================
   NUMBERS COUNTER
   ============================================= */
.numbers-section {
    background: linear-gradient(135deg, var(--pop-primary), var(--pop-primary-mid));
    padding: 3.5rem 0;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.number-item {
    text-align: center;
    min-width: 140px;
}

.number-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--pop-white);
    letter-spacing: -.02em;
}

.number-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pop-green);
}

.number-label {
    display: block;
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
    margin-top: .25rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 500;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final-section {
    background: linear-gradient(145deg, #0a1e3d 0%, #0d3068 50%, #1062fe 100%);
    padding: 80px 0;
}

.cta-final-section h2 {
    color: var(--pop-white);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.cta-final-section p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-final-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    background: var(--pop-green);
    color: var(--pop-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 4px 16px rgba(0, 201, 167, .35);
    transition: var(--pop-transition);
}

.btn-cta-primary:hover {
    background: var(--pop-green-hover);
    color: var(--pop-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 201, 167, .45);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, .1);
    color: var(--pop-white);
    border: 2px solid rgba(255, 255, 255, .3);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    backdrop-filter: blur(8px);
    transition: var(--pop-transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .6);
    color: var(--pop-white);
    text-decoration: none;
    transform: translateY(-2px);
}

.cta-trust-seals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-trust-seals span {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    font-weight: 500;
}

/* Pricing cards refinement (kept for other pages) */
/* =============================================
   TESTIMONIALS / REVIEWS
   ============================================= */
.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .75rem;
}

.review-stars .star {
    color: var(--pop-star-color);
    font-size: 1.05rem;
}

.review-aggregate {
    text-align: center;
    margin-bottom: 2.5rem;
}

.review-aggregate .aggregate-score {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pop-text);
    letter-spacing: -.02em;
}

.review-aggregate .aggregate-stars {
    color: var(--pop-star-color);
    font-size: 1.4rem;
    margin: .25rem 0;
    letter-spacing: 2px;
}

.review-aggregate .aggregate-count {
    font-size: .875rem;
    color: var(--pop-text-muted);
}

/* --- CSS Avatars by initials --- */
.avatar-initials {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--pop-white);
    margin-right: .75rem;
    text-transform: uppercase;
}

.avatar-initials.av-1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.avatar-initials.av-2 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.avatar-initials.av-3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.avatar-initials.av-4 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.avatar-initials.av-5 {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.single-review-wrap {
    border-radius: var(--pop-radius) !important;
    box-shadow: var(--pop-shadow-xs) !important;
    transition: var(--pop-transition) !important;
}

.single-review-wrap:hover {
    box-shadow: var(--pop-shadow-md) !important;
}

/* =============================================
   FOOTER TRUST BADGES
   ============================================= */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    transition: var(--pop-transition);
}

.trust-badge:hover {
    color: rgba(255, 255, 255, .95);
}

.trust-badge i {
    font-size: .85rem;
}

/* Footer social hover improvements */
.social-list-default a {
    transition: var(--pop-transition) !important;
}

.social-list-default a:hover {
    transform: translateY(-3px);
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading-modern h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pop-text);
    margin-bottom: .75rem;
    letter-spacing: -.015em;
}

.section-heading-modern p {
    color: var(--pop-text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   ENHANCED BUTTONS — Brand colors
   ============================================= */
.btn-brand-01 {
    background: linear-gradient(135deg, var(--pop-accent), var(--pop-accent-hover)) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    letter-spacing: .02em;
    box-shadow: 0 2px 10px rgba(16, 98, 254, .2) !important;
}

.btn-brand-01:hover,
.btn-brand-01:focus {
    box-shadow: 0 6px 20px rgba(16, 98, 254, .35) !important;
    transform: translateY(-2px);
}

.btn-brand-03 {
    border-radius: 8px !important;
}

.btn-outline-brand-02 {
    border-radius: 8px !important;
}

/* =============================================
   CTA SECTION ENHANCEMENT (primary-bg)
   ============================================= */
.ptb-60.primary-bg {
    background: linear-gradient(135deg, #0a1e3d 0%, #0d3068 50%, #1354a5 100%) !important;
}

/* =============================================
   OLD SERVICES FEATURES
   ============================================= */
.single-service {
    border-radius: var(--pop-radius) !important;
    box-shadow: var(--pop-shadow-xs) !important;
    border: 1px solid var(--pop-border) !important;
}

/* =============================================
   FADE-IN ON SCROLL ANIMATION
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up:nth-child(1) {
    transition-delay: 0s;
}

.fade-in-up:nth-child(2) {
    transition-delay: .1s;
}

.fade-in-up:nth-child(3) {
    transition-delay: .2s;
}

.fade-in-up:nth-child(4) {
    transition-delay: .3s;
}

.fade-in-up:nth-child(5) {
    transition-delay: .4s;
}

.fade-in-up:nth-child(6) {
    transition-delay: .5s;
}

/* =============================================
   GRAY-LIGHT-BG REFINEMENT
   ============================================= */
.gray-light-bg {
    background: var(--pop-bg) !important;
}

/* =============================================
   DOMAIN SEARCH BOX
   ============================================= */
.domain-search-wrap {
    border-radius: var(--pop-radius-lg) !important;
    box-shadow: var(--pop-shadow-md) !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero-headline {
        font-size: 2.15rem;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   MODERN FOOTER
   ============================================= */
.footer-modern {
    background: linear-gradient(135deg, #0a1e3d 0%, #0d3068 100%);
    color: rgba(255, 255, 255, 0.7);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social-modern {
    display: flex;
    gap: 0.8rem;
}

.footer-social-modern a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pop-white);
    transition: var(--pop-transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-modern a:hover {
    background: var(--pop-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(16, 98, 254, 0.35);
    border-color: transparent;
}

.footer-social-modern a i {
    width: 18px;
    height: 18px;
}

.footer-trust-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.trust-item-modern i {
    width: 18px;
    height: 18px;
    color: var(--pop-green);
}

.footer-col-title {
    color: var(--pop-white);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background: var(--pop-accent);
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 0.75rem;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--pop-transition);
    font-size: 0.9rem;
}

.footer-links-modern a:hover {
    color: var(--pop-white);
    padding-left: 6px;
}

.footer-bottom.gray-light-bg {
    background: #081a35 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom .small-text,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.45) !important;
}

.footer-bottom a:hover {
    color: var(--pop-white) !important;
}

@media (max-width: 767px) {
    .hero-modern {
        min-height: auto;
        padding-top: 140px !important;
    }

    .hero-headline {
        font-size: 1.85rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    /* Trust Bar Mobile */
    .trust-bar-grid {
        gap: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }

    /* Service Tabs Mobile */
    .service-tabs-nav {
        gap: .4rem;
    }

    .service-tab {
        padding: .6rem 1rem;
        font-size: .8rem;
        flex: 1 1 calc(50% - .5rem);
        justify-content: center;
    }

    /* Product Cards Mobile */
    .product-card {
        padding: 1.5rem;
    }

    /* Advantages Mobile */
    .advantage-card {
        padding: 1.75rem 1.25rem;
    }

    /* Steps Mobile */
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        flex: 1 1 100%;
        padding: 1.5rem;
    }

    /* Numbers Mobile */
    .numbers-grid {
        gap: 2rem;
    }

    .number-item {
        min-width: 120px;
    }

    .number-value {
        font-size: 2rem;
    }

    /* CTA Final Mobile */
    .cta-final-section h2 {
        font-size: 1.75rem;
    }

    .cta-final-buttons {
        flex-direction: column;
    }

    .cta-final-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .cta-trust-seals {
        gap: 1rem;
        flex-direction: column;
    }

    /* Footer Mobile */
    .footer-modern {
        text-align: center;
        padding-top: 60px !important;
    }

    .footer-social-modern {
        justify-content: center;
    }

    .footer-trust-modern {
        align-items: center;
        margin-bottom: 3rem;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-modern a:hover {
        padding-left: 0;
    }

    .section-heading-modern h2 {
        font-size: 1.65rem;
    }

    /* Mobile header scrolled */
    .main-header-menu-wrap.scrolled {
        animation: none !important;
    }
}
/* =============================================
   ANCORAS x HEADER FIXO (fix 2026-07-13)
   Links de menu/indice que apontam para #secao rolavam ate o titulo
   ficar escondido atras do header fixo (z-index 9999, ~90px).
   scroll-padding corrige todo salto de ancora do documento.
   ============================================= */
html {
    scroll-padding-top: 110px;
}
[id] {
    scroll-margin-top: 110px;
}
