:root {
    --color-principal: #007bff;
    --color-whatsapp: #25D366;
    --color-fondo: #121212;
    --color-fondo-seccion: #1e1e1e;
    --color-texto: #e0e0e0;
    --color-texto-secundario: #a0a0a0;
    --fuente-principal: 'Poppins', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--fuente-principal);
    background-color: var(--color-fondo);
    color: var(--color-texto);
    line-height: 1.6;
    background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('images/fondo-pagina.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
a { text-decoration: none; color: var(--color-principal); }
h1, h2, h3 { font-weight: 700; }
h1, h2 { text-align: center; margin-bottom: 20px; }
section { padding: 80px 5%; max-width: 1200px; margin: auto; }
header { background-color: rgba(30, 30, 30, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid #333; padding: 15px 5%; position: fixed; width: 100%; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
nav .logo img { height: 65px; }
nav .nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
nav .nav-links a { color: var(--color-texto); font-weight: 700; transition: color 0.3s ease; }
nav .nav-links a:hover { color: var(--color-principal); }

.cta-button, .cta-button-plan, .cta-button-main {
    display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 700; color: #fff !important; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; background-size: 200% auto; background-image: linear-gradient(to right, #007bff 0%, #0056b3 51%, #007bff 100%); box-shadow: 0 4px 15px 0 rgba(0, 123, 255, 0.4);
}
.cta-button:hover, .cta-button-plan:hover, .cta-button-main:hover {
    background-position: right center; transform: scale(1.05);
}
.cta-button-main { font-size: 1.1rem; padding: 15px 30px; }

.slider-section { padding: 0; max-width: none; background-color: #000; margin-top: 95px; }
.slider .slick-slide { height: 70vh; position: relative; }
.slider .slick-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-content { position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%); color: #fff; text-align: center; background-color: rgba(0, 0, 0, 0.6); padding: 30px; border-radius: 10px; width: 90%; max-width: 800px; }
.slide-content h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.slide-content p { margin-bottom: 25px; font-size: 1.2rem; }
.slick-dots li button:before { font-size: 16px; color: #fff !important; opacity: 0.7; }
.slick-dots li.slick-active button:before { color: var(--color-principal) !important; opacity: 1; }

#plans, #services, #coverage, #features, #contact { 
    background-color: transparent; 
    max-width: none;
}

.plans-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px;}

.plan-card, .service-card {
    background-color: rgba(30, 30, 30, 0.7); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; padding: 30px; text-align: center; width: 300px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card { display: flex; flex-direction: column; justify-content: space-between; }
.plan-card:hover, .service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border: 1px solid rgba(0, 123, 255, 0.5); }

.plan-card.popular { border: 2px solid var(--color-principal); }
.popular-badge { background-color: var(--color-principal); color: #fff; padding: 5px 15px; position: absolute; top: 15px; right: -30px; transform: rotate(45deg); font-size: 0.8rem; font-weight: 700; }
.plan-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
.plan-description { color: var(--color-texto-secundario); margin-bottom: 20px; flex-grow: 1; }
.price { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }
.price .periodo { font-size: 1rem; font-weight: 400; color: var(--color-texto-secundario); }
.plan-card.gamer .plan-speed, .plan-card.gamer .plan-feature { font-size: 1.2rem; font-weight: 700; color: var(--color-principal); margin-bottom: 5px; }

.services-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.service-card i { font-size: 2.5rem; color: var(--color-principal); margin-bottom: 20px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--color-texto); }
.service-card p { color: var(--color-texto-secundario); font-size: 0.95rem; }

.features-container { display: flex; justify-content: space-around; gap: 30px; text-align: center; margin-top: 40px; flex-wrap: wrap; }
.feature-box { flex-basis: 300px; }
.feature-box i { font-size: 3rem; color: var(--color-principal); margin-bottom: 20px; }
.feature-box h3 { font-size: 1.5rem; margin-bottom: 10px; }
.feature-box p { color: var(--color-texto-secundario); }
.map-container { width: 100%; border-radius: 10px; overflow: hidden; border: 1px solid #333; margin-top: 20px; background-color: rgba(30, 30, 30, 0.7); }
.map-container iframe { width: 100%; height: 480px; border: 0; }
#contact .contact-wrapper { display: flex; flex-wrap: wrap; gap: 40px; text-align: left; margin-top: 40px;}
#contact .contact-info { flex: 1; min-width: 300px; }
#contact .contact-info h3 { text-align: left; font-size: 1.8rem; margin-bottom: 15px; }
#contact .contact-info p { margin-bottom: 15px; line-height: 1.8; }
#contact .contact-info i { color: var(--color-principal); margin-right: 15px; width: 20px; text-align: center; }
footer { text-align: center; padding: 20px; background-color: #121212; border-top: 1px solid #333; font-size: 0.9rem; color: var(--color-texto-secundario); max-width: none; }

.mobile-menu-button { display: none; font-size: 1.8rem; cursor: pointer; }

.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: var(--color-whatsapp); color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); z-index: 100; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float i { margin-top: 15px; }

@media (max-width: 850px) {
    nav .logo img { height: 50px; }
    .slider-section { margin-top: 80px; }
    nav .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; right: 0; width: 100%; background-color: rgba(30, 30, 30, 0.98); padding: 20px 0; text-align: center; border-bottom: 1px solid #333; }
    nav .nav-links.active { display: flex; }
    .nav-links li { margin: 10px 0; }
    .nav-links .cta-button { display: inline-block; margin-top: 15px; padding: 12px 25px; }
    .mobile-menu-button { display: block; }
    .slider .slick-slide { height: 50vh; }
    .slide-content h1 { font-size: 1.8rem; }
    .slide-content { padding: 20px; bottom: 5%; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 24px; }
    .whatsapp-float i { margin-top: 13px; }
}