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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --dark-bg: #0a0e27;
    --card-bg: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #b8c2f0;
    --accent-color: #667eea;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background animado */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0a0e27, #1a1a2e, #16213e, #0f3460);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(102, 126, 234, 0.1);
}

.nav-cta {
    background: var(--primary-gradient) !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Barra de progreso */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Barra de escasez */
.scarcity-bar {
    background: var(--accent-gradient);
    padding: 1rem 2rem;
    text-align: center;
    color: white;
    font-weight: 600;
    animation: scarcityPulse 3s infinite;
    margin-top: 70px;
}

@keyframes scarcityPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Alertas en vivo y contador */
.live-alerts {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 999;
    max-width: 350px;
}

.alert-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    transform: translateX(400px);
    transition: all 0.5s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.alert-item.show {
    transform: translateX(0);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.alert-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.alert-content {
    flex: 1;
}

.alert-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

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

.alert-time {
    font-size: 0.7rem;
    color: rgba(102, 126, 234, 0.8);
    margin-top: 0.3rem;
}

.live-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--accent-gradient);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    z-index: 999;
    animation: counterPulse 3s infinite;
    box-shadow: 0 8px 32px rgba(245, 87, 108, 0.4);
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Contenedor principal */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Secciones principales */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* HERO SECTION - Reorganizada */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

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

.urgency-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-block;
    animation: urgencyPulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Estadísticas del hero */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Visual del hero */
.hero-visual {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(20px);
}

.revenue-chart {
    text-align: center;
}

.chart-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.chart-visual {
    height: 200px;
    background: linear-gradient(to top, var(--accent-gradient) 0%, transparent 100%);
    border-radius: 10px;
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--success-gradient);
    border-radius: 2px;
    animation: chartGrow 3s ease-out infinite;
}

@keyframes chartGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.revenue-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comparison-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
}

.before {
    background: rgba(245, 87, 108, 0.1);
    border: 1px solid rgba(245, 87, 108, 0.3);
}

.after {
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.comparison-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.comparison-value {
    font-size: 1.8rem;
    font-weight: 800;
}

.before .comparison-value { color: #f5576c; }
.after .comparison-value { color: #4facfe; }

/* Botones CTA */
.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.cta-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1.5rem 3rem;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* SECCIÓN REALIDAD VS POTENCIAL - Reorganizada */
.reality-potential-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(245, 87, 108, 0.05));
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 4rem;
}

.reality-side, .potential-side {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.reality-side {
    border: 2px solid rgba(245, 87, 108, 0.3);
}

.potential-side {
    border: 2px solid rgba(79, 172, 254, 0.3);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reality-header h3 { color: #f5576c; }
.potential-header h3 { color: #4facfe; }

.comparison-content .comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.bullet {
    color: #f5576c;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 15px;
}

.potential-side .bullet {
    color: #4facfe;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: vsRotate 3s ease-in-out infinite;
}

@keyframes vsRotate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.transformation-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.urgency-text {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.transformation-button {
    background: var(--accent-gradient);
    color: white;
    padding: 1.8rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
}

.transformation-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(245, 87, 108, 0.6);
}

/* INDICADORES DE CONFIANZA - Reorganizados */
.trust-section {
    padding: 5rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.4);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.trust-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.trust-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* SECCIÓN DE VIDEO - Reorganizada */
.video-section {
    padding: 6rem 0;
    text-align: center;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(245, 87, 108, 0.3));
    padding: 4rem 2rem;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    margin-bottom: 2rem;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.play-icon {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.video-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* TESTIMONIOS - Reorganizados */
.social-proof {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.author-company {
    font-size: 1rem;
    color: var(--text-secondary);
}

.testimonial-results {
    padding: 1.5rem;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.results-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #4facfe;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.results-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #4facfe;
}

/* SERVICIOS - Reorganizados */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 3rem;
}

.service-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.4;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.service-button {
    background: var(--primary-gradient);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* FORMULARIO DE CONTACTO - Reorganizado */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(245, 87, 108, 0.1));
}

.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

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

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

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

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.success-message {
    text-align: center;
    padding: 2.5rem;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(79, 172, 254, 0.3);
    margin-top: 2rem;
}

/* FOOTER - Reorganizado */
footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Widget flotante de WhatsApp */
.floating-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-widget {
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.widget-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.whatsapp-widget:hover .widget-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gradient);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .live-alerts {
        right: 10px;
        max-width: 300px;
    }

    .revenue-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-divider {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .vs-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .reality-side, .potential-side {
        padding: 2rem;
    }

    .transformation-button {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
    }

    .form-container {
        padding: 2.5rem 2rem;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }
}