/* ==========================================
   VARIABLES
========================================== */
:root {
    --bg: #05030A;
    --purple: #7C3AED;
    --cyan: #22D3EE;
    --text: #F9FAFB;
    --text-muted: #9CA3AF;
}

/* ==========================================
   RESET
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

/* ==========================================
   BASE
========================================== */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    overflow-y: auto;
}

/* ==========================================
   HEADER
========================================== */
.header {
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(0,0,0,0.6);
    text-align: center;
}

.logo-img {
    height: 120px;
}

/* ==========================================
   HERO
========================================== */
.hero-image {
    width: 100%;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--purple);
}

.hero-text-overlay {
    max-width: 800px;
    padding: 2rem;
    background: rgba(0,0,0,0.65);
    border-radius: 12px;
    text-align: center;
}

.hero-text-overlay h1 {
    color: var(--cyan);
    margin-bottom: 1rem;
}

.hero-text-overlay p {
    color: var(--text);
}

/* ==========================================
   SECCIONES (CLAVE)
========================================== */
.section {
    width: 100%;
    padding: 5rem 1.5rem;   /* 🔥 separación fuerte */
    text-align: center;
    background: #070511;   /* 🔥 fondo visible */
    border-top: 2px solid rgba(124,58,237,0.3);
}

.section:nth-of-type(even) {
    background: #0b0820;
}

.section h2 {
    color: var(--cyan);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.section p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================
   IMÁGENES INTERMEDIAS
========================================== */
.middle-image,
.footer-image {
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: block;
    border-top: 4px solid var(--purple);
    border-bottom: 4px solid var(--cyan);
}

/* ==========================================
   CONTACTO
========================================== */
.contact-box {
    background: rgba(255,255,255,0.06);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.phone-neon {
    color: #25D366;
    font-weight: bold;
}

/* ==========================================
   FOOTER
========================================== */
footer {
    background: #02010a;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* ==========================================
   WHATSAPP FLOAT
========================================== */
.wp-fab-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
}
