/* Estilos CSS Elite - SecureFam */
:root {
    --primary-neon: #00ffff;
    --secondary-neon: #ff00ff;
    --accent-neon: #00ff00;
    --danger-red: #ff0040;
    --warning-orange: #ff8c00;
    --dark-bg: #0a0a12;
    --card-bg: #151520;
    --text-light: #e0e0ff;
    --text-dim: #a0a0c0;
    --gold: #ffd700;
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-elite: 0 15px 35px rgba(0, 255, 255, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    --gradient-danger: linear-gradient(135deg, var(--danger-red), #ff6b6b);
    --gradient-success: linear-gradient(135deg, var(--accent-neon), #32cd32);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
}
/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}
/* Contenedor base */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* FIXED SPACING SYSTEM - Consistent section spacing */
section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}
/* Hero section - Compact spacing */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* All other sections - Consistent spacing */
.problema,
.solucion,
.proceso,
.testimonios,
.contacto {
    padding: 4rem 0;
}
/* Header Elite - FIXED ALIGNMENT */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition);
    padding: 0.5rem 0;
    min-height: 70px;
}
header.scrolled {
    background: rgba(10, 10, 18, 0.95);
    box-shadow: var(--shadow-elite);
}
/* FIXED - Navigation container with proper alignment */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 60px;
    position: relative;
}
/* FIXED - Logo positioned to the left */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-neon);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    transition: var(--transition);
    letter-spacing: -0.5px;
    flex-shrink: 0;
    position: fixed;
    left: 2rem;
    z-index: 1001;
}
.logo-icon {
    font-size: 2.5rem;
    margin-right: 0.8rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
}
/* FIXED - Navigation links positioned to the right */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: 0;
    position: fixed;
    right: 2rem;
    z-index: 1001;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
}
.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: -1;
}
.nav-links a:hover::before {
    left: 0;
}
.nav-links a:hover {
    color: var(--primary-neon);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}
.nav-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}
/* Colores específicos para iconos del menú */
.nav-icon-home {
    color: #4CAF50; /* Verde para inicio */
}
.nav-icon-danger {
    color: #FF5722; /* Rojo/naranja para riesgos */
}
.nav-icon-solution {
    color: #2196F3; /* Azul para solución */
}
.nav-icon-process {
    color: #9C27B0; /* Púrpura para proceso */
}
.nav-icon-testimonials {
    color: #FFC107; /* Amarillo/dorado para testimonios */
}
.nav-icon-contact {
    color: #00BCD4; /* Cian para contacto */
}
.nav-text {
    display: inline;
}
/* FIXED - Menu toggle positioned properly */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
    position: fixed;
    right: 2rem;
    top: 23px;
}
.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-neon);
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
/* Hero Section Elite */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 10, 18, 0.9), rgba(20, 20, 40, 0.8)),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    z-index: -1;
}
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.08) 0%, transparent 70%);
}
.hero-content {
    max-width: 1000px;
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
}
.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-elite);
    animation: pulse 2s infinite;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}
.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta-container {
    margin-bottom: 3rem;
}
.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s;
}
.cta-primary:hover::before {
    left: 100%;
}
.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.7);
}
/* Hero Stats - Compact spacing */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(21, 21, 32, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    min-width: 120px;
}
.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-elite);
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-neon);
    display: block;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
    margin-top: 0.3rem;
}
/* Secciones generales */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    letter-spacing: -1px;
    color: var(--primary-neon);
}
.section-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
/* Problema Section */
.problema {
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 64, 0.03) 0%, transparent 50%),
        rgba(15, 10, 12, 0.5);
}
.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.problema-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.danger-card {
    border-color: rgba(255, 0, 64, 0.2);
}
.problema-card:hover {
    transform: translateY(-10px);
    border-color: var(--danger-red);
    box-shadow: 0 15px 30px rgba(255, 0, 64, 0.2);
}
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}
.problema-card:hover .card-glow {
    opacity: 1;
}
.problema-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 0, 64, 0.6));
}
.problema-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.problema-card p {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.impact-meter {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    height: 8px;
    position: relative;
    margin-top: 1rem;
}
.meter-fill {
    height: 100%;
    background: var(--gradient-danger);
    border-radius: 20px;
    position: relative;
    animation: fillMeter 2s ease-out;
}
.impact-meter span {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.8rem;
    color: var(--danger-red);
    font-weight: 700;
}
.urgency-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(255, 69, 0, 0.8));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}
.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    flex-wrap: wrap;
}
.urgency-icon {
    font-size: 1.5rem;
    animation: pulse 1.5s infinite;
}
/* Solución Section */
.solucion {
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        rgba(10, 25, 15, 0.7);
}
.solucion-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.solucion-visual {
    position: relative;
}
.tech-demo {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.demo-screen {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1.5rem;
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
}
.ai-detection {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 12px;
}
.detection-zone {
    width: 200px;
    height: 150px;
    border: 2px dashed var(--accent-neon);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: scanZone 2s infinite;
}
.detection-label {
    color: var(--accent-neon);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.threat-indicator {
    background: var(--gradient-success);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    animation: pulse 1s infinite;
}
.tech-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-badge {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-neon);
}
.solucion-benefits h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.benefit-list {
    margin-bottom: 2rem;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(21, 21, 32, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: var(--transition);
}
.benefit-item:hover {
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-elite);
}
.benefit-icon {
    font-size: 2rem;
    color: var(--accent-neon);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8));
}
.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.benefit-content p {
    color: var(--text-dim);
    line-height: 1.6;
}
.benefit-metric {
    font-size: 0.9rem;
    color: var(--accent-neon);
    font-weight: 700;
    background: rgba(0, 255, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    align-self: flex-start;
    white-space: nowrap;
}
/* Proceso Section */
.proceso {
    background: rgba(15, 15, 25, 0.7);
}
.proceso-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
}
.proceso-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}
.proceso-step:nth-child(even) {
    flex-direction: row-reverse;
}
.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border: 4px solid var(--primary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}
.step-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-neon);
}
.step-content {
    width: 45%;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
}
.step-content:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-elite);
}
.step-time {
    color: var(--primary-neon);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.step-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.step-content p {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.step-deliverable {
    color: var(--accent-neon);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* TESTIMONIOS Section */
.testimonios {
    background: rgba(20, 15, 25, 0.7);
}
.testimonios-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: stretch;
}
/* VIDEOS TESTIMONIALES - Layout horizontal */
.testimonial-videos-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.video-testimonial-item {
    width: 100%;
}
.video-testimonial {
    height: 300px;
    border-radius: var(--border-radius);
    background: url('https://images.unsplash.com/photo-1573164574572-cb89e39749b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition);
}
/* VIDEO EMPRESARIAL - Estilo diferenciado */
.business-video {
    background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    border-color: rgba(255, 215, 0, 0.3);
}
.video-testimonial:hover {
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-elite);
    transform: scale(1.02);
}
.business-video:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.play-button {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    transition: var(--transition);
    margin-bottom: 1.5rem;
}
.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}
.business-video .play-button {
    background: rgba(255, 215, 0, 0.9);
}
.business-video .play-button:hover {
    background: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}
.video-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}
.video-info p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.video-category {
    display: inline-block;
    background: rgba(0, 255, 255, 0.2);
    color: var(--primary-neon);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(0, 255, 255, 0.3);
}
.business-video .video-category {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.3);
}
/* TESTIMONIOS ESCRITOS - Grid escalable */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}
.testimonial-card.verified {
    border-color: rgba(0, 255, 0, 0.3);
}
.testimonial-card:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
}
.verification-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-success);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary-neon);
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}
.testimonial-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
}
.testimonial-date {
    color: var(--accent-neon);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.2rem;
}
.testimonial-quote {
    margin-bottom: 1.5rem;
}
.testimonial-quote p {
    color: var(--text-dim);
    line-height: 1.7;
    font-style: italic;
    font-size: 1rem;
}
.testimonial-result {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}
.result-icon {
    font-size: 1.5rem;
    color: var(--accent-neon);
    flex-shrink: 0;
}
.testimonial-result span:last-child {
    color: var(--accent-neon);
    font-weight: 700;
    font-size: 0.9rem;
}
/* FEED DE REDES SOCIALES */
.social-feed-section {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(21, 21, 32, 0.5);
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 255, 255, 0.1);
}
.social-feed-section h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-neon);
    margin-bottom: 2rem;
}
.social-feed-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.social-placeholder {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0, 255, 255, 0.3);
}
.social-placeholder p {
    color: var(--text-dim);
    margin-bottom: 1rem;
}
/* Contacto Section */
.contacto {
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        rgba(10, 20, 30, 0.8);
}
.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.contacto-urgency {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 2px solid rgba(255, 0, 64, 0.3);
    position: relative;
    overflow: hidden;
}
.contacto-urgency::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.05) 0%, transparent 70%);
    animation: pulse 3s infinite;
}
.urgency-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    z-index: 1;
    position: relative;
    flex-wrap: wrap;
}
.urgency-header .urgency-icon {
    font-size: 2rem;
    color: var(--danger-red);
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}
.urgency-header h3 {
    color: var(--danger-red);
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.danger-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    z-index: 1;
    position: relative;
}
.danger-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 0, 64, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 64, 0.3);
}
.danger-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--danger-red);
    min-width: 60px;
    flex-shrink: 0;
}
.danger-text {
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
}
.schedule-call-section {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    z-index: 1;
    position: relative;
}
.schedule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.schedule-icon {
    font-size: 1.5rem;
    color: var(--primary-neon);
    flex-shrink: 0;
}
.schedule-header h4 {
    color: var(--primary-neon);
    font-size: 1.2rem;
    font-weight: 800;
}
.schedule-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.schedule-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.schedule-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}
.schedule-benefit .benefit-icon {
    color: var(--accent-neon);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.schedule-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    margin-bottom: 1rem;
}
.schedule-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 255, 255, 0.6);
}
.btn-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.btn-pulse {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s;
}
.schedule-call-btn:hover .btn-pulse {
    left: 100%;
}
.schedule-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 600;
}
.note-icon {
    color: var(--primary-neon);
    flex-shrink: 0;
}
.contacto-form {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 2px solid rgba(0, 255, 255, 0.2);
    position: relative;
}
.elite-form {
    position: relative;
    z-index: 1;
}
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.form-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-neon);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.form-guarantee {
    color: var(--accent-neon);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    resize: vertical;
}
.form-group select {
    cursor: pointer;
}
.form-group select option {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 0.5rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
    opacity: 0.7;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}
.form-note {
    font-size: 0.8rem;
    color: var(--accent-neon);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.cta-submit {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}
.cta-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.7);
}
.submit-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s;
}
.cta-submit:hover .submit-shine {
    left: 100%;
}
.submit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.form-footer {
    margin-top: 2rem;
    text-align: center;
}
.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.security-badge {
    background: rgba(0, 255, 0, 0.1);
    color: var(--accent-neon);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 0, 0.3);
}
/* Footer */
footer {
    background: rgba(5, 5, 10, 0.95);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}
.footer-main {
    text-align: left;
}
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-neon);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}
.footer-logo-icon {
    font-size: 2.5rem;
    margin-right: 0.8rem;
}
.footer-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    font-style: italic;
}
.footer-description {
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 300px;
}
.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}
.footer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}
.footer-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-neon);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}
.footer-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
    margin-top: 0.3rem;
}
.footer-contact {
    text-align: right;
}
.footer-contact h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.emergency-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
}
.contact-icon {
    color: var(--primary-neon);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.9rem;
}
.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.badge {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}
.close-lightbox {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}
.close-lightbox:hover {
    color: var(--primary-neon);
    transform: scale(1.2);
}
.lightbox-video {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}
/* Animaciones */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}
@keyframes fillMeter {
    from { width: 0; }
    to { width: var(--fill-width, 100%); }
}
@keyframes scanZone {
    0%, 100% { border-color: var(--accent-neon); opacity: 1; }
    50% { border-color: var(--primary-neon); opacity: 0.7; }
}
/* Responsive Design Mejorado */
@media (max-width: 1400px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .solucion-showcase {
        gap: 3rem;
    }
    .contacto-container {
        gap: 3rem;
    }
    .logo {
        left: 1.5rem;
    }
    .nav-links {
        right: 1.5rem;
    }
    .menu-toggle {
        right: 1.5rem;
    }
}
/* Convert to icons at 1300px */
@media (max-width: 1300px) {
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    .nav-text {
        display: none;
    }
    .nav-icon {
        font-size: 1.4rem;
    }
}
/* Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .solucion-showcase {
        gap: 3rem;
    }
    .contacto-container {
        gap: 3rem;
    }
    .logo {
        left: 1.5rem;
    }
    .nav-links {
        right: 1.5rem;
    }
    .menu-toggle {
        right: 1.5rem;
    }
}
/* Medium Tablets (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-stats {
        gap: 1.2rem;
    }
    .solucion-showcase {
        gap: 2.5rem;
    }
    .contacto-container {
        gap: 2.5rem;
    }
    .logo {
        left: 1.5rem;
        font-size: 1.6rem;
    }
    .logo-icon {
        font-size: 2.2rem;
    }
    .nav-links {
        right: 1.5rem;
    }
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    .menu-toggle {
        right: 1.5rem;
    }
    .problema-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .testimonial-videos-horizontal {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    .video-testimonial {
        height: 250px;
    }
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    .contacto-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-content {
        gap: 2rem;
    }
}
/* Small Tablets (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .container {
        padding: 0 1.2rem;
    }
    section {
        padding: 3rem 0;
    }
    .hero {
        padding-top: 70px;
        padding-bottom: 1.5rem;
    }
    .hero-stats {
        gap: 1rem;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .logo {
        left: 1.2rem;
        font-size: 1.5rem;
    }
    .logo-icon {
        font-size: 2rem;
    }
    .nav-links {
        right: 1.2rem;
    }
    .nav-links a {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    .menu-toggle {
        right: 1.2rem;
        top: 20px;
    }
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin-bottom: 2rem;
    }
    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .stat-item {
        padding: 0.8rem 1.2rem;
        min-width: 100px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .problema-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .problema-card {
        padding: 2rem;
    }
    .solucion-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .solucion-visual, .solucion-benefits {
        width: 100%;
    }
    .tech-demo {
        padding: 1.5rem;
    }
    .demo-screen {
        height: 250px;
    }
    .benefit-list {
        margin-bottom: 1.5rem;
    }
    .benefit-item {
        gap: 1rem;
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    .timeline-line {
        left: 30px;
    }
    .proceso-step {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }
    .proceso-step:nth-child(even) {
        flex-direction: row !important;
    }
    .step-marker {
        left: 30px;
        width: 60px;
        height: 60px;
    }
    .step-number {
        font-size: 1.5rem;
    }
    .step-content {
        width: calc(100% - 90px);
        margin-left: 90px;
        padding: 2rem;
    }
    .step-content h3 {
        font-size: 1.3rem;
    }
    .testimonial-videos-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .video-testimonial {
        height: 250px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contacto-urgency, .contacto-form {
        padding: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-main, .footer-stats, .footer-contact {
        text-align: center;
    }
    .footer-contact {
        text-align: center;
    }
    .emergency-contact {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    section {
        padding: 2.5rem 0;
    }
    .hero {
        padding-top: 70px;
        padding-bottom: 1rem;
        min-height: 90vh;
    }
    .logo {
        left: 1rem;
        font-size: 1.4rem;
    }
    .logo-icon {
        font-size: 1.8rem;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 18, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.8rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
        backdrop-filter: blur(20px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        right: auto;
        margin-left: 0;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .nav-links a {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem;
        font-size: 1rem;
    }
    .nav-text {
        display: inline;
    }
    .menu-toggle {
        display: flex;
        position: fixed;
        right: 1rem;
        top: 20px;
        z-index: 1002;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    header {
        min-height: 70px;
        padding: 0.5rem 0;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 1.2rem;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .cta-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .stat-item {
        width: 100%;
        max-width: 200px;
        padding: 0.7rem 1rem;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
    .section-header {
        margin-bottom: 1.5rem;
    }
    .section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .section-icon {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .problema-card {
        padding: 1.5rem;
    }
    .problema-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .problema-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .problema-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .impact-meter {
        height: 6px;
        margin-top: 0.8rem;
    }
    .urgency-content {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    .urgency-icon {
        font-size: 1.2rem;
    }
    .solucion-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .tech-demo {
        padding: 1.2rem;
    }
    .demo-screen {
        height: 200px;
    }
    .detection-zone {
        width: 150px;
        height: 120px;
    }
    .detection-label {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
    .threat-indicator {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }
    .tech-features {
        gap: 0.5rem;
    }
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    .solucion-benefits h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
    .benefit-icon {
        font-size: 1.5rem;
    }
    .benefit-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    .benefit-content p {
        font-size: 0.85rem;
    }
    .benefit-metric {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    .timeline-line {
        left: 20px;
    }
    .proceso-step {
        flex-direction: column !important;
        margin-bottom: 2.5rem;
        align-items: flex-start;
    }
    .proceso-step:nth-child(even) {
        flex-direction: column !important;
    }
    .step-marker {
        left: 20px;
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    .step-number {
        font-size: 1.2rem;
    }
    .step-content {
        width: calc(100% - 40px);
        margin-left: 40px;
        padding: 1.5rem;
    }
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .step-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    .step-deliverable {
        font-size: 0.8rem;
    }
    .testimonial-videos-horizontal {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .video-testimonial {
        height: 200px;
    }
    .video-info h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    .video-info p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .video-category {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .testimonial-card {
        padding: 1.2rem;
    }
    .testimonial-header {
        margin-bottom: 1rem;
    }
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        margin-right: 0.8rem;
    }
    .testimonial-info h4 {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    .testimonial-info p {
        font-size: 0.8rem;
    }
    .testimonial-date {
        font-size: 0.7rem;
    }
    .testimonial-quote p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .testimonial-result {
        padding: 0.8rem;
    }
    .result-icon {
        font-size: 1.2rem;
    }
    .testimonial-result span:last-child {
        font-size: 0.8rem;
    }
    .social-feed-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    .social-feed-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .social-placeholder {
        padding: 2rem;
    }
    .social-placeholder p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contacto-urgency, .contacto-form {
        padding: 1.5rem;
    }
    .urgency-header h3 {
        font-size: 1.2rem;
    }
    .urgency-icon {
        font-size: 1.5rem;
    }
    .danger-item {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    .danger-number {
        font-size: 1.2rem;
        min-width: 50px;
    }
    .danger-text {
        font-size: 0.85rem;
    }
    .schedule-header h4 {
        font-size: 1rem;
    }
    .schedule-icon {
        font-size: 1.2rem;
    }
    .schedule-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .schedule-benefit {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    .schedule-call-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
    .btn-icon {
        font-size: 1rem;
    }
    .schedule-note {
        font-size: 0.7rem;
    }
    .note-icon {
        font-size: 0.9rem;
    }
    .form-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    .form-guarantee {
        font-size: 0.8rem;
    }
    .form-group {
        margin-bottom: 1rem;
    }
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .form-note {
        font-size: 0.7rem;
    }
    .cta-submit {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    .submit-icon {
        font-size: 1rem;
    }
    .security-badges {
        gap: 0.5rem;
    }
    .security-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-main, .footer-stats, .footer-contact {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    .footer-logo-icon {
        font-size: 2rem;
        margin-right: 0.5rem;
    }
    .footer-tagline {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    .footer-description {
        font-size: 0.9rem;
    }
    .footer-stats {
        gap: 1rem;
    }
    .footer-stat {
        padding: 0.8rem;
    }
    .footer-stat .stat-number {
        font-size: 1.5rem;
    }
    .footer-stat .stat-label {
        font-size: 0.8rem;
    }
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .emergency-contact {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .contact-icon {
        font-size: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    .footer-bottom p {
        font-size: 0.8rem;
    }
    .footer-badges {
        gap: 0.5rem;
    }
    .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    .lightbox-content {
        width: 95%;
    }
    .close-lightbox {
        top: -40px;
        font-size: 2rem;
    }
}
/* Mobile Landscape (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
    }
    .problema-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-main, .footer-stats, .footer-contact {
        text-align: left;
    }
    .footer-contact {
        text-align: right;
    }
    .emergency-contact {
        justify-content: flex-end;
    }
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}
/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .cta-primary {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    .stat-item {
        padding: 0.5rem 0.8rem;
        min-width: 80px;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .problema-card {
        padding: 1.2rem;
    }
    .problema-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    .problema-card h3 {
        font-size: 1rem;
    }
    .problema-card p {
        font-size: 0.8rem;
    }
    .solucion-showcase {
        gap: 1.2rem;
    }
    .tech-demo {
        padding: 1rem;
    }
    .demo-screen {
        height: 150px;
    }
    .detection-zone {
        width: 120px;
        height: 90px;
    }
    .benefit-item {
        padding: 0.8rem;
    }
    .step-marker {
        width: 40px;
        height: 40px;
    }
    .step-content {
        width: calc(100% - 50px);
        margin-left: 50px;
        padding: 1.2rem;
    }
    .video-testimonial {
        height: 150px;
    }
    .contacto-form {
        padding: 1.2rem;
    }
    .footer-logo {
        font-size: 1.4rem;
    }
    .footer-stats {
        gap: 0.8rem;
    }
}
