/* home-fibrared.css (Aplicado a ISP Manager - midominio1.com) */

/* Fondo dinámico y líneas abstractas para Hero Section */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(45deg, #0a1128 0%, #001f54 100%); /* Degradado oscuro y profundo */
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Patrón de líneas animadas en el fondo */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,200,255,0.1) 0%, transparent 70%),
                repeating-linear-gradient(45deg, rgba(0,255,255,0.05) 0px, rgba(0,255,255,0.05) 2px, transparent 2px, transparent 10px);
    opacity: 0.7;
    animation: backgroundPan 30s linear infinite; /* Animación de movimiento */
    z-index: 1;
}

@keyframes backgroundPan {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

.hero-section .container {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-section h1 {
    font-family: 'Orbitron', sans-serif; /* Fuente tecnológica para el título principal */
    font-size: 3.8rem; /* Más grande y audaz */
    font-weight: 700;
    background: linear-gradient(to right, #6EE7B7, #3B82F6, #9333EA); /* Degradado vibrante para el texto */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -1.5px; /* Ajuste para un look más compacto */
}

.hero-section p.lead {
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Botones Hero (vanguardistas) */
.hero-section .custom-btn-primary {
    background: linear-gradient(45deg, #00c6ff, #0072ff); /* Degradado moderno */
    border: none;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 18px 40px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.3);
}

.hero-section .custom-btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 198, 255, 0.5);
    background: linear-gradient(45deg, #0072ff, #00c6ff); /* Invertir o cambiar el degradado */
}

.hero-section .custom-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.3rem;
    padding: 18px 40px;
    transition: all 0.4s ease;
}

.hero-section .custom-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Secciones de Contenido (Ajustes de texto, padding, etc.) */
.features-section, .tech-section {
    background-color: #f0f8ff; /* Azul claro muy sutil */
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Separador sutil */
}

.features-section h2, .tech-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #0a1128; /* Color oscuro para contraste */
    font-weight: 700;
    margin-bottom: 60px;
    font-size: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.tech-section .img-fluid { /* Estilo para la imagen en la sección de tecnología */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tech-section .img-fluid:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.tech-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: #0a1128;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.tech-section p.lead {
    font-size: 1.4rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tech-section ul {
    list-style: none;
    padding: 0;
}

.tech-section ul li {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.tech-section ul li i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--accent-color); /* Color para los checks (definido en styles.css) */
    line-height: inherit;
}

/* Sección de CTA (Call to Action) */
.cta-section {
    background: linear-gradient(90deg, #001f54 0%, #0a1128 100%); /* Degradado oscuro y premium */
    padding: 80px 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.cta-section p.lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .custom-btn-light {
    background-color: white;
    color: #001f54; /* Color del texto del botón blanco */
    font-weight: 600;
    font-size: 1.4rem;
    padding: 20px 50px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .custom-btn-light:hover {
    background-color: #e6f7ff; /* Un blanco más suave al pasar el ratón */
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-section .custom-btn-light i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-section .custom-btn-light:hover i {
    transform: translateX(5px);
}

.contact-info-bottom {
    margin-top: 40px;
}

.contact-info-bottom p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-bottom strong {
    color: white;
    font-weight: 700;
}

/* Responsividad para este diseño específico (ISP Manager) */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p.lead {
        font-size: 1.2rem;
    }

    .hero-section .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .features-section h2, .tech-section h2, .cta-section h2 {
        font-size: 2.5rem;
    }

    .tech-section h3 {
        font-size: 2rem;
    }

    .tech-section p.lead {
        font-size: 1.2rem;
    }

    .cta-section .custom-btn-light {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p.lead {
        font-size: 1rem;
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .features-section h2, .tech-section h2, .cta-section h2 {
        font-size: 2rem;
    }

    .tech-section h3 {
        font-size: 1.8rem;
    }

    .tech-section p.lead {
        font-size: 1rem;
    }
}