/* === GLOBAL_DESIGN.CSS - Versión Final === */

/* 1. FONDO GENERAL - Fondo blanco limpio */
body {
    background-color: #ffffff;
    background-image: none; /* Elimina imagen de fondo anterior */
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
}

/* 2. LOGO - Esquina superior izquierda */
.logo {
    display: block;
    position: fixed; /* Se mantiene fijo al hacer scroll */
    top: 20px;
    left: 20px;
    width: 160px;
    height: auto;
    z-index: 1000;
    cursor: pointer;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 3. ELIMINACIÓN COMPLETA DEL PIE DE PÁGINA */
footer,
.pie-de-pagina,
.text-center.mt-4,
.text-center.mt-4 *,
a[href*="whatsapp"],
a[href*="telegram"],
div:has(p:contains("interesado")),
div:has(p:contains("Estás interesado")),
p:contains("¿Estás interesado"),
p:contains("Click aquí") {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
}

/* 4. RESPONSIVE PARA MÓVILES */
@media (max-width: 768px) {
    .logo {
        width: 120px;
        top: 15px;
        left: 15px;
        position: absolute;
    }
    
    body {
        padding-top: 80px; /* Espacio para el logo en móvil */
    }
}

/* 5. ELIMINAR ANIMACIONES PARPADEO (no necesarias) */
.parpadeo,
@keyframes parpadeo {
    /* Se eliminan estas reglas para diseño limpio */
}