/* Estilos Core: Blanco y Negro Estricto */
        :root {
            --bg-color: #050505;
            --text-color: #ffffff;
            --accent-color: #ffffff;
            --border-color: #333333;
            --card-bg: #0a0a0a;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background-color: rgba(5, 5, 5, 0.9) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar-brand {
            font-weight: 900;
            letter-spacing: 1px;
            color: var(--text-color) !important;
        }
        .nav-link {
            color: #aaa !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--text-color) !important;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
        }
        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
        }
        .dynamic-text {
            border-right: 2px solid var(--text-color);
            white-space: nowrap;
            overflow: hidden;
            animation: blink 0.7s infinite;
        }
        @keyframes blink {
            50% { border-color: transparent; }
        }

        /* Botones personalizados */
        .btn-outline-light {
            border-width: 2px;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            background-color: var(--text-color);
            color: var(--bg-color);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255,255,255,0.1);
        }

        /* Tarjetas de Servicios */
        .service-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 0;
            padding: 2rem;
            height: 100%;
            transition: all 0.4s ease;
        }
        .service-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.05);
        }
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Secciones generales */
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 3rem;
            border-bottom: 2px solid var(--text-color);
            display: inline-block;
            padding-bottom: 10px;
        }

        /* Formularios */
        .form-control, .form-select {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            border-radius: 0;
        }
        .form-control:focus, .form-select:focus {
            background-color: #111;
            border-color: var(--accent-color);
            color: var(--text-color);
            box-shadow: none;
        }
        
        /* Footer */
        footer {
            border-top: 1px solid var(--border-color);
            background-color: #000;
        }

        /* Ajuste de espaciado para el menú fijo en todas las pantallas */
.hero-section {
    padding-top: 120px; 
}

/* Ajustes específicos para teléfonos móviles (pantallas menores a 768px) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem; /* Reduce el tamaño del texto principal */
    }
    
    .hero-section {
        padding-top: 100px; /* Ajusta el margen superior en móviles */
        min-height: auto; /* Permite que la sección se adapte al contenido */
        padding-bottom: 50px;
    }
    
    .dynamic-text {
        border-right: 1px solid var(--text-color); /* Hace el cursor un poco más fino */
    }
}

/* Estilos para el botón flotante de WhatsApp */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: #25d366;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        transition: all 0.3s ease;
    }
    .whatsapp-float:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
    }
    @media (max-width: 768px) {
        .whatsapp-float {
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
        }
        .whatsapp-float i {
            font-size: 1.5rem !important;
        }
    }

    /* =========================================
   Estilos Avanzados para el Footer
   ========================================= */

/* Enlaces del Footer con efecto de desplazamiento */
.footer-link {
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--text-color) !important;
    padding-left: 8px; /* Se mueve ligeramente a la derecha al pasar el mouse */
}

/* Iconos de Redes Sociales estilo Minimalista/Brutalista */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0; /* Bordes cuadrados para mantener el diseño Aether */
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--text-color);
    color: var(--bg-color) !important;
    transform: translateY(-5px); /* Se eleva al pasar el mouse */
    box-shadow: 0 10px 20px rgba(255,255,255,0.05);
}