/* wp-clean-style.css */

:root {
    /* Color Palette - Cyber Dark Theme */
    --bg-dark: #0a0e17;
    --bg-card: rgba(16, 22, 36, 0.65);
    --primary: #00d2ff;     /* Neon Cyan */
    --secondary: #3a7bd5;   /* Deep Blue */
    --accent: #ff007f;      /* Neon Pink/Magenta for alerts */
    --success: #00ff88;     /* Neon Green */
    --warning: #ffb703;     /* Neon Yellow/Orange */
    --danger: #ff3333;      /* Neon Red */
    
    --text-main: #f0f4f8;
    --text-muted: #8e9eaf;
    
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Spacing & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-title { color: #fff; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }

/* Base Classes */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 3.5rem 0; }
.text-center { text-align: center; }
.justify-center { display: flex; justify-content: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.text-muted { color: var(--text-muted); }
.danger-text { color: var(--danger); font-weight: 600; }

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.highlight { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 1.8rem; border-radius: 8px; font-weight: 600;
    font-size: 1rem; cursor: pointer; transition: var(--transition-smooth);
    border: 2px solid transparent;
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.2rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; border: none;
}
.btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.btn-glow { box-shadow: 0 0 15px rgba(0, 210, 255, 0.4); animation: pulse-glow 2s infinite; }
@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(0, 210, 255, 0.4); }
    50% { box-shadow: 0 0 25px rgba(0, 210, 255, 0.6); }
    100% { box-shadow: 0 0 15px rgba(0, 210, 255, 0.4); }
}

.btn-secondary {
    background: transparent; border-color: var(--primary); color: var(--text-main);
}
.btn-secondary:hover {
    background: rgba(0, 210, 255, 0.1); transform: translateY(-2px);
}
.btn-block { display: block; width: 100%; }

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.8rem;
    box-shadow: var(--glass-shadow); transition: var(--transition-smooth);
}
.glass-card:hover { border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); }

/* === NAVBAR === */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000; padding: 0.8rem 0;
    transition: var(--transition-smooth); background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--glass-border);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 800; color: #fff; }
.logo i { color: var(--primary); font-size: 2rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) { color: var(--text-main); font-weight: 600; position: relative; }
.nav-links a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition-fast);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* === HERO SECTION === */
.hero {
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    padding-top: 60px; position: relative; overflow: hidden;
}
.dark-mesh-bg {
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(58, 123, 213, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 210, 255, 0.1) 0%, transparent 50%);
}
.hero-content { max-width: 900px; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.badge {
    display: inline-block; padding: 0.4rem 1rem; border-radius: 50px;
    background: rgba(0, 210, 255, 0.1); color: var(--primary); font-size: 0.9rem;
    font-weight: 600; margin-bottom: 1.5rem; border: 1px solid var(--primary);
}
.hero-actions { display: flex; gap: 1.5rem; }

/* === PROBLEMA === */
.problem-wrapper { max-width: 800px; margin: 0 auto; text-align: center; }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.icon-wrapper {
    width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 1.5rem; background: rgba(255,255,255,0.05);
}
.danger-bg { color: var(--danger); box-shadow: 0 0 20px rgba(255, 51, 51, 0.2); }
.accent-bg { color: var(--primary); box-shadow: 0 0 20px rgba(0, 210, 255, 0.2); }
.success-bg { color: var(--success); box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); }
.warning-bg { color: var(--warning); box-shadow: 0 0 20px rgba(255, 183, 3, 0.2); }

/* === PLANES (PRICING) === */
.dark-bg { background-color: rgba(0, 0, 0, 0.4); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.pricing-card { display: flex; flex-direction: column; position: relative; }
.pricing-card.popular {
    border-color: var(--primary); transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}
.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; padding: 0.4rem 1.2rem; border-radius: 20px; font-size: 0.8rem; font-weight: 800;
}
.pricing-header { padding-bottom: 1.5rem; border-bottom: 1px solid var(--glass-border); margin-bottom: 1.5rem; }
.price { font-size: 2.5rem; font-weight: 800; color: #fff; }
.price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.ideal-for { color: var(--success); font-size: 0.9rem; font-weight: 600; margin-top: 0.5rem; }
.pricing-features { list-style: none; flex-grow: 1; margin-bottom: 2rem; }
.pricing-features li { display: flex; gap: 0.8rem; margin-bottom: 1rem; color: var(--text-main); }
.pricing-features i { color: var(--primary); margin-top: 4px; }
.timeframe { margin-bottom: 1rem; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* === MANTENIMIENTO (2 GRIDS) === */
.maintenance-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 3rem auto 0; gap: 2rem; }

/* === PROCESS TIMELINE === */
.timeline { margin-top: 4rem; position: relative; max-width: 800px; margin-left: auto; margin-right: auto; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--glass-border); }
.timeline-item { display: flex; margin-bottom: 2rem; position: relative; }
.timeline-marker {
    width: 40px; height: 40px; background: var(--bg-dark); border: 2px solid var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; color: var(--primary); z-index: 2;
    margin-right: 1.5rem; box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}
.timeline-content { flex: 1; padding: 1.5rem; }

/* === POR QUÉ ELEGIRNOS === */
.reasons-wrapper { max-width: 700px; margin: 0 auto; text-align: center; }
.large-list { margin-top: 1.5rem; list-style: none; display: flex; flex-direction: column; gap: 1rem; text-align: left; background: var(--bg-card); padding: 1.5rem; border-radius: 16px; border: 1px solid var(--glass-border); }
.large-list li { display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; }
.large-list i { color: var(--success); font-size: 1.5rem; }

/* === CTA BANNER === */
.cta-subtitle { max-width: 700px; margin: 0 auto 2rem; font-size: 1.2rem; }

/* === SECTION CONTACT === */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.trust-badges { display: flex; flex-direction: column; gap: 1.5rem; }
.trust-badge { display: flex; align-items: flex-start; gap: 1rem; background: rgba(0,0,0,0.3); padding: 1rem; border-radius: 8px; border-left: 4px solid var(--primary); }
.trust-badge i { font-size: 2rem; color: var(--primary); }
.trust-badge p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-muted); font-weight: 600; }
.form-group input, .form-group textarea {
    width: 100%; padding: 1rem; background: rgba(0, 0, 0, 0.3); border: 1px solid var(--glass-border);
    border-radius: 8px; color: #fff; font-family: var(--font-main); transition: var(--transition-fast);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

/* === FOOTER === */
footer { border-top: 1px solid var(--glass-border); padding: 4rem 0 2rem; background: rgba(0, 0, 0, 0.4); }
.footer-content { display: flex; flex-direction: column; align-items: center; }
.footer-bottom { text-align: center; color: var(--text-muted); border-top: 1px solid var(--glass-border); padding-top: 2rem; margin-top: 2rem; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: #fff; border-radius: 50%;
    font-size: 35px; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth);
}
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #1ebe57; color: #fff;
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.6);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .services-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-card.popular { transform: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .maintenance-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-marker { width: 40px; height: 40px; font-size: 1rem; margin-right: 1rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}
