/* Estilos generales */
body {
    background: linear-gradient(135deg, #1a1a3a 0%, #3a3a6a 100%);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

/* Navegación */
.navbar {
    background: rgba(20, 20, 50, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    filter: drop-shadow(0 0 5px #00b7eb);
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: #00b7eb !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #b026ff !important;
}

.btn-neon-nav {
    background: transparent;
    border: 2px solid #00b7eb;
    color: #00b7eb;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-neon-nav:hover {
    background: #00b7eb;
    color: #1a1a3a;
    box-shadow: 0 0 10px #00b7eb;
}

/* Héroe */
.hero {
    background: url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 0 0 15px #00b7eb;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d4d4ff;
    margin-bottom: 2rem;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00b7eb, 0 0 20px #00b7eb; }
    to { text-shadow: 0 0 20px #b026ff, 0 0 30px #b026ff; }
}

.btn-neon {
    background: transparent;
    border: 2px solid #00b7eb;
    color: #00b7eb;
    padding: 10px 30px;
    font-size: 1.2rem;
    transition: all 0.3s;
    border-radius: 5px;
}

.btn-neon:hover {
    background: #00b7eb;
    color: #1a1a3a;
    box-shadow: 0 0 20px #00b7eb;
}

/* Secciones */
.section {
    padding: 80px 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #00b7eb;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 183, 235, 0.5);
}

.service-card img {
    max-height: 150px;
    border-radius: 10px;
}

/* Cobertura */
#map {
    height: 400px;
    border-radius: 10px;
    border: 1px solid #00b7eb;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #00b7eb;
    color: #ffffff;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: #b026ff;
    box-shadow: 0 0 10px #b026ff;
    color: #ffffff;
}

.form-select option {
    background: #1a1a3a;
    color: #ffffff;
}

.form-control::placeholder {
    color: #d4d4ff;
}

.coverage-result {
    color: #d4d4ff;
}

/* Estilo para controles de zoom del mapa */
.leaflet-control-zoom a {
    background-color: #00b7eb !important;
    color: #1a1a3a !important;
    border-radius: 5px;
}

.leaflet-control-zoom a:hover {
    background-color: #b026ff !important;
}

/* Footer */
footer {
    background: #1a1a3a;
    color: #d4d4ff;
}

.social-icons a {
    color: #00b7eb;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #b026ff;
    transform: scale(1.2);
}

/* Íconos sociales flotantes */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-social a {
    color: #25D366; /* Verde WhatsApp */
    font-size: 3rem; /* Tamaño más grande para mayor visibilidad */
    transition: transform 0.3s, color 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 183, 235, 0.5);
}

.floating-social a:hover {
    color: #b026ff;
    transform: scale(1.2);
    box-shadow: 0 0 20px #b026ff;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    .floating-social {
        right: 10px;
        bottom: 10px;
    }
}