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

/* =========================
   BODY
========================= */
body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

/* =========================
   FONDO GLOBAL (ARREGLADO)
========================= */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* 🔥 RUTA ABSOLUTA (CLAVE DEL ERROR) */
    background: url('/home/img/bg-masthead.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;

    z-index: -2;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* =========================
   CONTENIDO (ARREGLA HEADER)
========================= */
.main-content {
    position: relative;
    z-index: 1;

    /* 🔥 ESTO SOLUCIONA QUE TODO ESTÉ ARRIBA */
    padding-top: 100px;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 60px 20px 30px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero .description {
    color: #ccc;
}

/* =========================
   SECCIONES
========================= */
.section {
    padding: 60px 20px;
}

/* 🔥 EVITA FONDO BLANCO */
.section .container {
    background: transparent;
}

/* =========================
   IMÁGENES
========================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   FORMULARIOS
========================= */
.form-control {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.form-control:focus {
    border-color: #00ff88;
    box-shadow: none;
}

/* =========================
   BOTONES
========================= */
.btn-success {
    background: #00ff88;
    border: none;
    color: #000;
    font-weight: bold;
}

.btn-success:hover {
    background: #00cc6a;
}

/* =========================
   LINKS (QUITAR AZUL)
========================= */
a {
    color: #00ff88;
    text-decoration: none;
}

a:hover {
    color: #00ffaa;
}

/* =========================
   REDES SOCIALES
========================= */
.redes-sociales a i {
    font-size: 36px;
    margin: 0 12px;
    color: #fff;
    transition: 0.3s;
}

.redes-sociales a i:hover {
    color: #00ff88;
    transform: scale(1.2);
}
.whatsapp-link {
    color: #25d366;
    font-weight: bold;
    text-decoration: none;
}

.whatsapp-link i {
    margin-right: 8px;
}

.whatsapp-link:hover {
    text-decoration: underline;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

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

    .section {
        padding: 40px 20px;
    }

    .main-content {
        padding-top: 90px;
    }

    .redes-sociales a i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

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

    .main-content {
        padding-top: 80px;
    }
}
