/* =========================================
   CSS Reset & Base Variables
   ========================================= */
   :root {
    /* Color Palette - Sleek Dark Mode */
    --bg-main: #0B0E14; /* Deep dark blue/black */
    --bg-secondary: #121822; /* Slightly lighter */
    
    /* Accents - Lighter Royal Blue & Neon Purple */
    --accent-primary: #1A3273; /* Navy Blue Escuro */
    --accent-primary-glow: rgba(26, 50, 115, 0.4);
    --accent-secondary: #B14AFF; /* Roxo vibrante */
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0ABB8;
    
    /* Glassmorphism settings */
    --glass-bg: rgba(18, 24, 34, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 5rem 0;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 90px;
}

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

/* =========================================
   Typography & Utilities
   ========================================= */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
}

.text-center {
    text-align: center;
}
.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(26, 50, 115, 0.6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(26, 50, 115, 0.4);
}

.btn-primary:hover {
    background: #112255;
    box-shadow: 0 0 30px rgba(26, 50, 115, 0.6);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: var(--bg-main);
    box-shadow: 0 0 15px var(--accent-primary-glow);
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    background: transparent;
    transition: all var(--transition-fast);
    margin-top: 1.25rem;
    align-self: flex-start;
}

.btn-service:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateX(4px);
}

.btn-service-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--accent-secondary);
    border: 1px solid var(--accent-secondary);
    background: transparent;
    transition: all var(--transition-fast);
    margin-top: 1.25rem;
    align-self: flex-start;
}

.btn-service-highlight:hover {
    background: var(--accent-secondary);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 0 15px rgba(177, 74, 255, 0.4);
}

/* =========================================
   Header & Navigation
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-fast);
}

header.scrolled {
    background: rgba(11, 14, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-tag {
    font-size: 0.75rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.nav-menu a:not(.btn):hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 0.4rem 0.875rem 0.4rem 0.65rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-menu-btn i {
    font-size: 1.1rem;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem; /* Account for fixed header */
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(177, 74, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 50, 115, 0.3);
    color: var(--text-primary);
    border: 1px solid rgba(26, 50, 115, 0.5);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-available {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.4);
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-indicators i {
    color: var(--accent-secondary);
    font-size: 1.125rem;
}

/* Hero Image & Stats */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a2233 100%);
    border-radius: 30px;
    border: 2px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.image-placeholder i {
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    margin-bottom: 1rem;
}

.stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    z-index: 2;
}

.stat-card i {
    font-size: 2rem;
}

.stat-card div {
    display: flex;
    flex-direction: column;
}

.stat-card strong {
    font-size: 1.125rem;
    line-height: 1.2;
}

.stat-card span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stat-1 {
    top: 10%;
    left: 0;
}
.stat-1 i { color: var(--accent-secondary); }

.stat-2 {
    bottom: 15%;
    right: 0;
}
.stat-2 i { color: var(--accent-primary); }

.stat-3 {
    top: 25%;
    right: -20px;
}
.stat-3 i { color: #00d2ff; }

.stat-4 {
    bottom: 30%;
    left: -20px;
}
.stat-4 i { color: #ff9d00; }

/* =========================================
   IT Support Section
   ========================================= */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(26, 50, 115, 0.2);
    border: 1px solid rgba(26, 50, 115, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--accent-primary);
    transition: all var(--transition-fast);
}

.feature-card:hover .icon-box {
    background: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 0 20px var(--accent-primary-glow);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================
   Other Services Section
   ========================================= */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.highlight-card {
    border-color: rgba(177, 74, 255, 0.3);
    box-shadow: 0 0 30px rgba(177, 74, 255, 0.05);
}

.highlight-card:hover {
    border-color: rgba(177, 74, 255, 0.6);
}

.service-image {
    height: 200px;
    background: #1a2233;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.1);
    border-bottom: 1px solid var(--glass-border);
}

.highlight-card .service-image {
    background: linear-gradient(135deg, #1a2233, rgba(177, 74, 255, 0.1));
    color: rgba(177, 74, 255, 0.3);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.check-list i {
    color: var(--accent-secondary);
}

/* =========================================
   How it Works Section
   ========================================= */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step {
    flex: 1;
    position: relative;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-main);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-primary-glow);
}

.step-content {
    padding: 2rem;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    width: 50px;
    height: 2px;
    background: var(--glass-border);
    position: relative;
    top: -60px; /* Align with step-number */
}

/* =========================================
   Footer & Floating Elements
   ========================================= */
.footer {
    background: #06080b;
    padding: 4rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact h4 {
    margin-bottom: 0.5rem;
}

.footer-contact a, .footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 0.85rem 1.4rem 0.85rem 1.1rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-bounce);
    text-decoration: none;
}

.floating-wa-label {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-main);
    white-space: nowrap;
}

.floating-wa:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* =========================================
   Pricing Section
   ========================================= */
.pricing {
    background: var(--bg-main);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(177, 74, 255, 0.07) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.pricing-card-featured {
    border-color: rgba(177, 74, 255, 0.4);
    box-shadow: 0 0 40px rgba(177, 74, 255, 0.08), 0 20px 50px rgba(0,0,0,0.4);
    transform: translateY(-8px);
}

.pricing-card-featured:hover {
    border-color: rgba(177, 74, 255, 0.7);
    transform: translateY(-14px);
}

.pricing-badge-featured {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem;
}

.pricing-card-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background: rgba(26, 50, 115, 0.2);
    border: 1px solid rgba(26, 50, 115, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.pricing-icon.featured {
    background: rgba(177, 74, 255, 0.15);
    border-color: rgba(177, 74, 255, 0.4);
    color: var(--accent-secondary);
}

.pricing-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.pricing-card-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-list {
    list-style: none;
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-item-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex: 1;
}

.pricing-item-name i {
    color: var(--accent-secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-item-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    text-align: right;
}

.pricing-note {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.pricing-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pricing-guarantee i {
    color: #25D366;
    font-size: 1rem;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    background: transparent;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-pricing:hover {
    border-color: var(--accent-primary);
    background: rgba(26, 50, 115, 0.2);
    transform: translateY(-2px);
}

.btn-pricing-featured {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    transition: all var(--transition-fast);
    text-align: center;
    box-shadow: 0 4px 20px rgba(177, 74, 255, 0.3);
}

.btn-pricing-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(177, 74, 255, 0.5);
}

.pricing-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

/* =========================================
   Trust Section
   ========================================= */
.trust-section {
    background: var(--bg-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.trust-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    transition: transform var(--transition-bounce);
}

.trust-card:hover .trust-icon {
    transform: scale(1.2) rotate(-5deg);
}

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* =========================================
   Process CTA
   ========================================= */
.process-cta {
    margin-top: 3.5rem;
    text-align: center;
}

/* =========================================
   Footer — Services Column
   ========================================= */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-services h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-services ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-services ul li a:hover {
    color: var(--text-primary);
}

/* =========================================
   Animations
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 { font-size: 3rem; }
    .hero-text p { margin: 0 auto 2.5rem; }
    .hero-ctas { justify-content: center; }
    .trust-indicators { justify-content: center; }

    .support-grid, .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .stat-1 { top: 8%;  left: 2%; }
    .stat-2 { bottom: 8%; right: 2%; }
    .stat-3 { top: 28%; right: 0; }
    .stat-4 { bottom: 28%; left: 0; }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(11, 14, 20, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        transition: left var(--transition-fast);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .support-grid, .services-wrapper, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        width: 2px;
        height: 50px;
        top: 0;
        margin: -1rem auto;
    }

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

    .stat-card {
        display: none;
    }

    .hero-visual {
        height: auto;
        min-height: unset;
    }

    .hv-card {
        width: 85%;
        max-width: 480px;
    }

    .floating-wa {
        padding: 0.75rem 1.1rem;
        font-size: 1.4rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .pricing-card-featured {
        transform: none;
    }
}

/* =========================================
   Quote Form Section Styles
   ========================================= */
.quote-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.quote-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.quote-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-primary);
    width: 50px;
    height: 50px;
    background: rgba(26, 50, 115, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item div {
    display: flex;
    flex-direction: column;
}

.benefit-item strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Form Styling */
.quote-form-container {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px var(--accent-primary-glow);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A0ABB8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.form-privacy {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-privacy i {
    font-size: 1rem;
    color: var(--accent-primary);
}

/* Feedback States */
.form-feedback {
    text-align: center;
    padding: 2rem 0;
}

.form-feedback i {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1.5rem;
}

.form-feedback h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-feedback p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive Adjustments for Form */
@media (max-width: 1024px) {
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quote-info {
        text-align: center;
    }
    
    .quote-info p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .quote-benefits {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-container {
        padding: 2rem 1.5rem;
    }

    .quote-info h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   Calculator Section
   ========================================= */
.calculator-section {
    background: var(--bg-secondary);
}

.calc-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
}

.calc-category-selector {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.calc-cat-btn {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calc-cat-btn:hover {
    border-color: rgba(177, 74, 255, 0.4);
    color: var(--text-primary);
}

.calc-cat-btn.active {
    background: rgba(177, 74, 255, 0.15);
    border-color: rgba(177, 74, 255, 0.5);
    color: var(--text-primary);
}

/* Proactive Calculator Hint */
.free-hint {
    background: rgba(177, 74, 255, 0.1);
    border: 1px solid rgba(177, 74, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.free-hint.hint-visible {
    opacity: 1;
    transform: translateY(0);
    animation: hint-glow 2s infinite;
}

@keyframes hint-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(177, 74, 255, 0.1); border-color: rgba(177, 74, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(177, 74, 255, 0.2); border-color: rgba(177, 74, 255, 0.6); }
}

.hint-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.hint-content i {
    font-size: 1.5rem;
    color: var(--accent-secondary);
}

.free-hint i.ph-plus-circle {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    transition: transform 0.3s ease;
}

.free-hint:hover {
    background: rgba(177, 74, 255, 0.15);
}

.free-hint:hover i.ph-plus-circle {
    transform: rotate(90deg) scale(1.2);
}

.calc-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.calc-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calc-service-item:hover {
    border-color: rgba(177, 74, 255, 0.3);
    background: rgba(177, 74, 255, 0.05);
}

.calc-service-item.selected {
    background: rgba(177, 74, 255, 0.1);
    border-color: rgba(177, 74, 255, 0.5);
}

.calc-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
    font-size: 0.7rem;
    color: transparent;
}

.calc-service-item.selected .calc-checkbox {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: white;
}

.calc-service-label {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.calc-service-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    text-align: right;
}

.calc-service-note {
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    color: var(--text-secondary);
    opacity: 0.7;
}

.calc-result {
    background: rgba(26, 50, 115, 0.2);
    border: 1px solid rgba(26, 50, 115, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.calc-result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.calc-result-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.calc-result-value.has-value {
    background: linear-gradient(90deg, #4a80ff, var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calc-disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

@media (max-width: 600px) {
    .calc-category-selector {
        flex-direction: column;
    }

    .calc-result {
        flex-direction: column;
        text-align: center;
    }

    .calc-card {
        padding: 1.5rem;
    }
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =========================================
   Animations
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    background: var(--bg-secondary);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #FBBF24; /* Gold */
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-author-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--accent-secondary);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Hero Visual — CSS Mockup Card
   ========================================= */
.hero-visual {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 78%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    display: block;
}

.hero-photo-placeholder {
    width: 78%;
    height: 82%;
    border-radius: 24px;
    border: 2px dashed rgba(255,255,255,0.1);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a2233 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    z-index: 1;
    position: relative;
}

.hero-photo-placeholder i {
    font-size: 3rem;
    opacity: 0.3;
}

.hv-card {
    width: 88%;
    max-width: 440px;
    background: linear-gradient(145deg, #121822 0%, #1a2233 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hv-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.hv-dots {
    display: flex;
    gap: 5px;
}

.hv-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.hv-dots span:first-child { background: #ff5f57; }
.hv-dots span:nth-child(2) { background: #febc2e; }
.hv-dots span:last-child { background: #28c840; }

.hv-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hv-items {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hv-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: background var(--transition-fast);
}

.hv-item:hover {
    background: rgba(255,255,255,0.055);
}

.hv-item-info {
    flex: 1;
    min-width: 0;
}

.hv-item-info strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hv-item-info span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 1px;
}

.hv-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hv-badge-done {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hv-badge-progress {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.hv-badge-wait {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.hv-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.875rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.hv-stat {
    text-align: center;
}

.hv-stat strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hv-stat span {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.hv-vline {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.08);
}

.hv-wa-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    padding: 0.6rem 1rem;
    background: rgba(37, 211, 102, 0.05);
    border-top: 1px solid rgba(37, 211, 102, 0.1);
}

/* =========================================
   Testimonials — Top Row & Avatars
   ========================================= */
.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.testimonial-source {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
}

.avatar-purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
}

.avatar-blue {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important;
}

.avatar-green {
    background: linear-gradient(135deg, #065f46, #10b981) !important;
}

.testimonials-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    background: var(--bg-main);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-item summary::after {
    content: '\002B';
    margin-left: auto;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1;
    transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: var(--accent-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.faq-item p {
    padding: 1rem 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Areas Section
   ========================================= */
.areas-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.area-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.area-item:hover {
    border-color: rgba(26, 50, 115, 0.5);
    color: var(--text-primary);
    background: rgba(26, 50, 115, 0.08);
}

.area-item i {
    color: var(--accent-primary);
    margin-right: 0.35rem;
}

.areas-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   Trust Grid — fix 2-col breakpoint at 768px
   ========================================= */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Serviços & Preços — Tabbed
   ========================================= */
.services-pricing {
    background: var(--bg-main);
}

.sp-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0;
    flex-wrap: wrap;
}

.sp-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: -1px;
    border-radius: 8px 8px 0 0;
}

.sp-tab:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
}

.sp-tab.active {
    color: var(--accent-secondary);
    border-bottom-color: var(--accent-secondary);
    background: rgba(177, 74, 255, 0.05);
}

.sp-panel {
    display: none;
    border-radius: 20px;
}

.sp-panel.active {
    display: block;
}

.sp-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.sp-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sp-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 50, 115, 0.2);
    border: 1px solid rgba(26, 50, 115, 0.4);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-primary);
}

.sp-icon-purple {
    background: rgba(177, 74, 255, 0.1);
    border-color: rgba(177, 74, 255, 0.3);
    color: var(--accent-secondary);
}

.sp-info h3 {
    font-size: 1.6rem;
    margin: 0;
}

.sp-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.sp-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #25D366;
}

.sp-pricing-box h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.sp-pricing-box h4 span {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.pricing-note-small {
    font-size: 0.78rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 768px) {
    .sp-panel-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sp-tab span { display: none; }
    .sp-tab { padding: 0.75rem 1rem; font-size: 1.2rem; }
}

/* =========================================
   Process Strip
   ========================================= */
.process-strip {
    background: var(--bg-secondary);
    padding: 2.5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.ps-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ps-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ps-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    flex-shrink: 0;
}

.ps-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.ps-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.ps-arrow {
    color: var(--glass-border);
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .ps-arrow { display: none; }
    .ps-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* =========================================
   Prova Social (Trust + Testimonials)
   ========================================= */
.social-proof-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.trust-badge-item:hover {
    border-color: rgba(177, 74, 255, 0.4);
    color: var(--text-primary);
}

.trust-badge-item i {
    color: var(--accent-secondary);
    font-size: 1rem;
}

/* =========================================
   CTA Final
   ========================================= */
.cta-section {
    background: var(--bg-main);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(177, 74, 255, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 2.8rem;
    margin: 1rem 0;
}

.cta-inner > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-contacts span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-contacts i {
    color: var(--accent-secondary);
}

@media (max-width: 480px) {
    .cta-inner h2 { font-size: 2rem; }
}

/* =========================================
   Footer Areas Bar
   ========================================= */
.footer-areas-bar {
    border-top: 1px solid var(--glass-border);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* =========================================
   Mobile Fixes
   ========================================= */

/* 1. Botão flutuante WhatsApp — só ícone no mobile */
@media (max-width: 768px) {
    .floating-wa {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        font-size: 1.6rem;
        bottom: 1.25rem;
        right: 1.25rem;
    }
    .floating-wa-label {
        display: none;
    }
}

/* 2. Section headers menores no mobile */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
    .section-header h2 {
        font-size: 1.65rem;
    }
    .section-header p {
        font-size: 1rem;
    }
}

/* 3. Process strip (01/02/03) mais compacto no mobile */
@media (max-width: 640px) {
    .process-strip {
        padding: 1.75rem 0;
    }
    .ps-num {
        font-size: 1.1rem;
        min-width: 32px;
    }
    .ps-text strong {
        font-size: 0.875rem;
    }
    .ps-text span {
        font-size: 0.75rem;
    }
}

/* 4. Pricing list — layout compacto no mobile */
@media (max-width: 600px) {
    .pricing-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding-bottom: 0.75rem;
    }
    .pricing-item-value {
        white-space: normal;
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--text-primary);
    }
    .pricing-item-name {
        font-size: 0.82rem;
    }
    .sp-info h3 {
        font-size: 1.25rem;
    }
}

/* 5. Testimonials menores no mobile */
@media (max-width: 768px) {
    .testimonial-text {
        font-size: 0.875rem;
    }
    .testimonials-section .section-header,
    .social-proof-section .section-header {
        margin-bottom: 1.5rem;
    }
}

