/* --- 1. CONFIGURACIÓN GENERAL --- */
body {
    background: #050506;
    color: #e0e6ed;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh; 
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- 2. NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 90%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { font-weight: 700; font-size: 1.4rem; color: #fff; }
.nav-logo span { color: #00d2ff; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 25px; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: 0.3s; }
.nav-menu a:hover { color: #00d2ff; }

.status-indicator {
    background: rgba(0, 255, 157, 0.1); color: #00ff9d; padding: 5px 12px;
    border-radius: 20px; font-size: 0.75rem; display: flex; align-items: center; gap: 8px;
}
.status-indicator span {
    width: 8px; height: 8px; background: #00ff9d; border-radius: 50%;
    box-shadow: 0 0 10px #00ff9d; animation: pulse 2s infinite;
}

/* --- 3. CONTENEDORES Y TARJETAS GLASS --- */
.hero-section {
    margin-top: 140px;
    margin-bottom: 60px;
    z-index: 10;
}

.glass-card {
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px; 
    padding: 50px 40px; 
    text-align: center;
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
    z-index: 10;
    margin: 0 auto;
}

#main-logo { width: 120px; height: auto; margin-bottom: 25px; filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4)); }
h1 { font-size: 2.4em; margin-top: 0; margin-bottom: 10px; color: #fff; }
h2 { font-size: 2.2em; color: #fff; text-align: center; margin-bottom: 40px; width: 100%; }
.tagline { color: #8899a6; margin-bottom: 35px; font-size: 0.95rem; }

.features-list { text-align: left; margin-bottom: 40px; }
.feature-item { display: flex; align-items: center; margin-bottom: 15px; gap: 15px; }
.feature-item p { margin: 0; color: #ced4da; font-size: 0.9rem; }

/* --- 4. CONFIGURACIÓN DE GRIDS --- */
.sections-container {
    width: 90%;
    max-width: 1100px;
    padding: 80px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.card-pricing, .feature-box {
    max-width: 100%;
}

.card-pricing { text-align: center; }
.price { font-size: 2.5rem; font-weight: 700; color: #fff; margin: 20px 0; }
.price span { font-size: 1rem; color: #8899a6; }
.plan-features { list-style: none; padding: 0; margin: 20px 0 35px 0; text-align: left; }
.plan-features li { margin-bottom: 12px; color: #ced4da; font-size: 0.9rem; }
.plan-features del { color: rgba(255, 255, 255, 0.25); }

.featured-plan {
    border: 1px solid rgba(0, 210, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.15);
}

/* --- 5. BOTONES --- */
.btn-primary {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #fff; border: none; padding: 14px 28px; border-radius: 12px;
    font-weight: 600; cursor: pointer; transition: 0.4s; width: 100%; display: block; text-align: center; box-sizing: border-box;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4); }

/* --- 6. BACKGROUND & FOOTER --- */
.background-cloud {
    position: fixed;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15), transparent 70%);
    filter: blur(100px); border-radius: 50%; z-index: 1; pointer-events: none;
    top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform 0.1s ease-out;
}

.bg-clean .clean-contact-card { max-width: 600px; text-align: center; }
.contact-emails { margin-top: 25px; text-align: left; display: inline-block; }
.contact-emails p { margin: 12px 0; color: #ced4da; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.contact-emails i { color: #00d2ff; font-size: 1.2rem; }

.site-footer {
    width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.05); background: rgba(5, 5, 6, 0.8);
    padding: 30px 0; margin-top: 60px; position: relative; z-index: 5; display: flex; justify-content: center;
}
.footer-content { width: 90%; max-width: 1100px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: #ced4da; text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; transition: 0.3s; }
.social-links a:hover { color: #00d2ff; }
.footer-right { text-align: right; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }
.footer-links-pages a { color: rgba(0, 210, 255, 0.6); text-decoration: none; }
.separator { margin: 0 8px; }

/* --- 7. SUSHMAN / ORIGINAL WIDGET --- */
.chat-widget { position: fixed; bottom: 30px; left: 30px; z-index: 3000; cursor: pointer; }
.chat-bubble {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5); width: 60px; height: 60px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
}
.chat-icon-pro { font-size: 30px; color: white; }
.chat-window {
    position: absolute; bottom: 75px; left: 0; width: 260px;
    background: rgba(15, 15, 20, 0.95); backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 15px; display: none; flex-direction: column; overflow: hidden;
}
.chat-header { background: #3a7bd5; padding: 12px; text-align: center; font-weight: bold; color: #fff; }
.chat-body { padding: 15px; display: flex; flex-direction: column; gap: 10px; }
.chat-body button { background: rgba(255,255,255,0.1); border: none; color: white; padding: 10px; border-radius: 8px; cursor: pointer; font-family: 'Poppins', sans-serif; transition: 0.3s; }
.chat-body button:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
    .navbar { height: 60px; }
    .nav-menu { gap: 12px; }
    .nav-menu a { font-size: 0.8rem; }
    .status-indicator { display: none; }
    .hero-section { margin-top: 100px; }
    .grid-container { grid-template-columns: 1fr; gap: 20px; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-right { text-align: center; }
    .chat-widget { left: auto !important; right: 20px; bottom: 20px; }
    .chat-window { left: auto; right: 0; }
}

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
