/* ==========================================================================
   RECARGAS PRO - CSS DESIGN SYSTEM & LAYOUT
   ========================================================================== */

/* --- Custom Properties & Tokens --- */
:root {
    /* Color Palette */
    --primary-bg: #030818;
    --primary-deep: #06112d;
    --primary-mid: #0b1a3e;
    --primary-light: #162c64;
    
    --accent-lime: #A3E319;
    --accent-lime-rgb: 163, 227, 25;
    --accent-cyan: #00e5ff;
    --accent-cyan-rgb: 0, 229, 255;
    --accent-sube: #0072CE;
    --accent-orange: #FF9100;
    --accent-orange-hover: #e07f00;
    
    /* Neutral colors */
    --text-white: #ffffff;
    --text-light: #f1f5f9;
    --text-gray: #94a3b8;
    --text-muted: #64748b;
    
    /* Glassmorphism & Borders */
    --glass-card: rgba(11, 26, 62, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-focus: rgba(0, 229, 255, 0.4);
    --card-glow: rgba(0, 229, 255, 0.03);
    
    /* Typography */
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    /* Transition Curve */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
}

/* --- Base & Reset Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-bg);
}

body {
    font-family: var(--font-inter);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-outfit);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* --- Ambient Background Glows --- */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(150px);
    opacity: 0.15;
}

.glow-bg-1 {
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

.glow-bg-2 {
    top: 40%;
    right: -10%;
    background: radial-gradient(circle, var(--accent-lime) 0%, transparent 70%);
    opacity: 0.1;
}

.glow-bg-3 {
    bottom: 15%;
    left: 20%;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray); }
.text-orange { color: var(--accent-orange); }
.text-green { color: var(--accent-lime); }
.font-outfit { font-family: var(--font-outfit); }
.lime-text { color: var(--accent-lime); }

.gradient-text {
    background: linear-gradient(135deg, var(--text-white) 30%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-lime) 0%, #76b800 100%);
    color: #000;
    box-shadow: 0 8px 20px rgba(163, 227, 25, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(163, 227, 25, 0.4);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-orange {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(255, 145, 0, 0.25);
}

.btn-orange:hover {
    box-shadow: 0 12px 28px rgba(255, 145, 0, 0.45);
    color: var(--text-white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --- Header & Hero Section --- */
.hero {
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(11, 26, 62, 0.6);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.brand-logo-img {
    height: 28px;
    object-fit: contain;
}

.brand-logo-fallback {
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
    align-items: center;
    gap: 6px;
}

.brand-logo-fallback i {
    color: var(--accent-cyan);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    border-top: 1px solid var(--glass-border);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-outfit);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-lime);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 4px;
}

/* --- Hero Graphic (POS / Lector SUBE) --- */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.glass-card {
    position: absolute;
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.card-icon.green {
    background: rgba(163, 227, 25, 0.15);
    color: var(--accent-lime);
    border: 1px solid rgba(163, 227, 25, 0.2);
}

.card-icon.blue {
    background: rgba(0, 114, 206, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 114, 206, 0.2);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.card-value {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
}

.card-value-status {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-lime);
    box-shadow: 0 0 8px var(--accent-lime);
    display: inline-block;
    animation: pulse 2s infinite;
}

.card-earnings {
    top: 50px;
    left: -20px;
}

.card-sube {
    bottom: 90px;
    right: -20px;
}

/* Glow rings around POS visual */
.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.05);
    z-index: 1;
    pointer-events: none;
}

.glow-ring-1 {
    width: 450px;
    height: 450px;
    animation: rotateRing 30s linear infinite;
}

.glow-ring-2 {
    width: 320px;
    height: 320px;
    animation: rotateRing 20s linear infinite reverse;
    border-style: dashed;
}

/* Terminal Fallback Graphic using CSS in case image is missing */
.terminal-fallback {
    width: 250px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-deep) 100%);
    border-radius: 24px;
    border: 2px solid var(--glass-border);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.fallback-screen {
    background: #000;
    border-radius: var(--border-radius-md);
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sube-indicator {
    color: var(--accent-cyan);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-outfit);
    font-weight: 700;
}

.sube-indicator i {
    font-size: 0.95rem;
}

.screen-price {
    font-family: var(--font-outfit);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-lime);
    text-align: center;
    margin: 12px 0;
}

.screen-status {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fallback-base {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.numpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.numpad span {
    background: rgba(255, 255, 255, 0.05);
    height: 20px;
    border-radius: 4px;
}

.pos-btn {
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    text-align: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* --- Section Formatting --- */
section {
    padding: 90px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 650px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(11, 26, 62, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 229, 255, 0.05);
}

.service-card:hover::before {
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-lime) 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

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

.sube-color {
    background: rgba(0, 114, 206, 0.1);
    color: var(--accent-sube);
    border: 1px solid rgba(0, 114, 206, 0.15);
}

.virtual-color {
    background: rgba(163, 227, 25, 0.1);
    color: var(--accent-lime);
    border: 1px solid rgba(163, 227, 25, 0.15);
}

.payments-color {
    background: rgba(255, 145, 0, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 145, 0, 0.15);
}

.service-name {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 14px;
}

.service-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
    height: 72px; /* Fix height for vertical alignment */
}

.service-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-gray);
}

.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--text-white);
}

.provider-badge.claro {
    background: rgba(239, 56, 41, 0.15);
    color: #ef3829;
    border: 1px solid rgba(239, 56, 41, 0.2);
}

.provider-badge.movistar {
    background: rgba(0, 169, 224, 0.15);
    color: #00a9e0;
    border: 1px solid rgba(0, 169, 224, 0.2);
}

.provider-badge.personal {
    background: rgba(0, 191, 165, 0.15);
    color: #00bfa5;
    border: 1px solid rgba(0, 191, 165, 0.2);
}

.provider-badge.service-p {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.provider-badge.rapipago {
    background: rgba(163, 227, 25, 0.15);
    color: var(--accent-lime);
    border: 1px solid rgba(163, 227, 25, 0.2);
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.advantages-image-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.benefits-main-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Fallback grid when image is not present */
.advantages-fallback {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-height: 320px;
}

.grid-card-mockup {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
}

.grid-card-mockup.accent-glow {
    border-color: rgba(163, 227, 25, 0.2);
}

.glow-box {
    text-align: center;
}

.glow-box i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.grid-card-mockup.accent-glow .glow-box i {
    color: var(--accent-lime);
}

.glow-box h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.arrow-up-flow {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

.green-text {
    font-size: 0.8rem;
    color: var(--accent-lime);
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    background: rgba(0, 229, 255, 0.08);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.benefit-info h4 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.benefit-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- Calculator Section (Engagement) --- */
.calculator-section {
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-deep) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.calculator-container {
    background: rgba(11, 26, 62, 0.4);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(12px);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.calc-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.calc-label {
    display: block;
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.4;
}

.range-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.calc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--primary-light);
    outline: none;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-lime);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(163, 227, 25, 0.5);
    transition: var(--transition-smooth);
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-bubble {
    position: absolute;
    top: -38px;
    background: var(--accent-lime);
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.85rem;
    transform: translateX(-50%);
    transition: var(--transition-smooth);
}

.range-bubble::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0;
    border-style: solid;
    border-color: var(--accent-lime) transparent;
}

.range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.calc-result-box {
    background: rgba(3, 8, 24, 0.5);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.calc-result-box.highlight-box {
    background: rgba(163, 227, 25, 0.03);
    border-color: rgba(163, 227, 25, 0.15);
}

.calc-result-title {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.calc-result-number {
    display: block;
    font-family: var(--font-outfit);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.calc-result-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.calc-footer-info {
    border-top: 1px solid var(--glass-border);
    margin-top: 32px;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-footer-info i {
    color: var(--accent-cyan);
}

/* --- Modernization / Banner Section --- */
.modernization-section {
    padding: 40px 0;
}

.modernization-box {
    background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary-light) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 48px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mod-title {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.mod-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.mod-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
}

.mod-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mod-list i {
    color: var(--accent-lime);
}

.mod-badge {
    background: rgba(3, 8, 24, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.mod-badge-num {
    font-family: var(--font-outfit);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-cyan);
    line-height: 1;
}

.mod-badge-lbl {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 8px;
    text-transform: uppercase;
}

/* --- Contact & Lead Form --- */
.contact-section {
    padding-bottom: 120px;
}

.form-max-width {
    max-width: 800px;
}

.contact-card {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.contact-methods {
    display: flex;
    background: rgba(3, 8, 24, 0.4);
    border-bottom: 1px solid var(--glass-border);
    padding: 32px;
}

.method-box {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.method-icon-wa {
    font-size: 2.2rem;
    color: #25d366;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 10px rgba(37, 211, 102, 0.2));
}

.method-icon-ph {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

.method-box h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.method-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.wa-direct-link, .phone-direct {
    font-family: var(--font-outfit);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-lime);
}

.wa-direct-link:hover {
    color: #25d366;
    transform: scale(1.03);
}

.method-divider {
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.method-divider span {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    font-family: var(--font-outfit);
}

.form-group input, .form-group select {
    background: rgba(3, 8, 24, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 14px;
    color: var(--text-light);
    font-family: var(--font-inter);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--glass-border-focus);
    background: rgba(11, 26, 62, 0.7);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
}

.btn-submit:hover {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    color: white;
}

.form-info-security {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.form-info-security i {
    color: var(--accent-cyan);
}

/* --- Footer --- */
.main-footer {
    background: #020510;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-text {
    font-family: var(--font-outfit);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.logo-text i {
    color: var(--accent-cyan);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

/* --- Floating Elements & Animations --- */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Scroll Revelations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(163, 227, 25, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(163, 227, 25, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(163, 227, 25, 0);
    }
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float.delay-2 {
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Header fade-in classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Media Queries (Responsive) --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .calc-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .modernization-box {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .mod-list {
        align-items: center;
    }
    
    .mod-badge {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 24px;
    }
    
    .method-divider {
        justify-content: center;
        padding: 10px 0;
    }
    
    .lead-form {
        padding: 24px;
    }
    
    .card-earnings {
        left: 0;
    }
    
    .card-sube {
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .calculator-container {
        padding: 24px;
    }
    
    .calc-result-number {
        font-size: 1.8rem;
    }
}
