* {
		  
            margin: 0;
            padding: 0;
            box-sizing: border-box;
		  
        }


		body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh; /* En lugar de height: 100% */
	height: 100%;
}

        /* Header y Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 123, 191, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
			box-shadow: 0px 2px 10px white;
			height: 40px
        }

        nav {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links a:hover {
            transform: translateY(-2px);
            color: #00d4ff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00d4ff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            position: absolute;
            left: 2rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 100px 5% 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Inicio Section */
        #inicio {
            background: #000;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            max-width: 100%;
            height: 100vh;
            padding: 0 5%; /* Keep horizontal padding */
			
        }

        #inicio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0; /* behind the content */
            background-image: 
                /* Pequeñas estrellas brillantes */
                radial-gradient(1.5px 1.5px at 10px 20px, #fff, rgba(255,255,255,0)),
                radial-gradient(1px 1px at 30px 50px, #fff, rgba(255,255,255,0)),
                radial-gradient(1px 1px at 70px 90px, #fff, rgba(255,255,255,0)),
                radial-gradient(1.5px 1.5px at 120px 150px, #fff, rgba(255,255,255,0)),
                radial-gradient(1px 1px at 180px 80px, #fff, rgba(255,255,255,0)),

                /* Estrellas más grandes con destello */
                radial-gradient(2.5px 2.5px at 50px 120px, #fff, rgba(255,255,255,0)),
                radial-gradient(2px 2px at 150px 30px, #fff, rgba(255,255,255,0)),
                radial-gradient(3.5px 3.5px at 100px 180px, #fff, rgba(255,255,255,0)),

                /* Destellos */
                radial-gradient(2px 2px at 80px 40px, #fff, rgba(255,255,255,0.5), rgba(255,255,255,0)),
                radial-gradient(3px 3px at 160px 100px, #fff, rgba(255,255,255,0.3), rgba(255,255,255,0));

            background-repeat: repeat;
            background-size: 200px 200px;
        }

        .hero-content {
            flex: 1;
            z-index: 2;
            width: 100%;
			
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 0px;
            animation: slideInLeft 1s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hero-logo-img {
            width: 250px; /* Adjust size as needed */
            filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff);
        }

        .hero-logo {
            width: 80px;
            height: 80px;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: slideInLeft 1s ease 0.2s both;
        }

        /* Párrafo que ocupa todo el ancho */
        .hero-content p:nth-of-type(2) {
            width: 100%;
            font-size: 1.4rem;
            text-align: justify;
            line-height: 1.8;
            padding-right: 2rem;
        }

        .cta-button {
            background: #00d4ff;
            color: #007bbf;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: slideInLeft 1s ease 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
        }

        .hero-visual {
            flex: 1;
            position: relative;
            animation: slideInRight 1s ease;
        }

        /* Animaciones de fondo mejoradas */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
			
        }

        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: float 8s infinite linear;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            transition: all 0.2s ease-out;
            pointer-events: none;
        }

        .particle::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            width: 12px;
            height: 12px;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            border-radius: 50%;
        }

        .particle.attracted {
            transform: scale(2);
            background: rgba(0, 212, 255, 1);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.9), 0 0 40px rgba(0, 212, 255, 0.6);
            animation-play-state: paused;
        }

        .wifi-signal {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        /* Nosotros Section */
        #nosotros {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
			margin-top: 3rem;
        }

        .about-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 123, 191, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
			text-align: justify;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, #007bbf, #00d4ff);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 123, 191, 0.2);
        }

        .about-card h3 {
            color: #007bbf;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .about-card .icon {
            font-size: 2rem;
            color: #00d4ff;
        }

        .about-card p {
            line-height: 1.8;
            color: #555;
            font-size: 1.1rem;
        }

        .services-highlight {
            background: linear-gradient(45deg, #007bbf, #00d4ff);
            color: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 123, 191, 0.3);
			margin-bottom: 40px;
        }

        .services-highlight h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .services-highlight .icon {
            font-size: 2rem;
        }

        /* Planes Section */
        #planes {
            /*background: #f8f9fa;*/
            position: relative;
			z-index: 9999;
			background-color: rgba(0,0,0,1.00);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #007bbf;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #00d4ff;
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 123, 191, 0.15), 0 0 0 1px rgba(0, 123, 191, 0.1);
            border: 2px solid rgba(0, 123, 191, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 123, 191, 0.25), 0 0 0 1px rgba(0, 123, 191, 0.2);
            border: 2px solid rgba(0, 123, 191, 0.3);
        }

        .plan-ribbon {
            position: absolute;
            top: 20px;
            right: -35px;
            background: #007bbf;
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.9rem;
        }

        .plan-card h3 {
            color: #007bbf;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .plan-speed {
            font-size: 3rem;
            font-weight: bold;
            color: #00d4ff;
            margin: 1rem 0;
        }

        .plan-price {
            font-size: 2rem;
            color: #007bbf;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .select-plan2 {
			
            background: linear-gradient(45deg, #007bbf, #00d4ff);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
			
        }

        .select-plan2:hover {
            transform: scale(1.05);
        }

        /* Cobertura Section */
        #cobertura {
            background: #007bbf;
            color: white;
            position: relative;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .location-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
			cursor:crosshair;
			position: relative;
			z-index: 99;
        }

        .location-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
			box-shadow: 5px 5px 5px white;
        }

        .map-container {
            margin-top: 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Legal Section */
        #legal {
            background: #f8f9fa;
        }

        .legal-content {
            text-align: center;
        }

        .download-btn {
            background: linear-gradient(45deg, #007bbf, #00d4ff);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 2rem;
			position: relative;
			z-index: 99;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 123, 191, 0.3);
        }

        /* Contacto Section */
        #contacto {
            background: linear-gradient(135deg, #007bbf 0%, #00d4ff 100%);
            color: white;
            min-height: auto;
            padding-bottom: 50px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }

        .schedule-table th,
        .schedule-table td {
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-align: left;
        }

        .schedule-table th {
            background: rgba(255, 255, 255, 0.2);
            font-weight: bold;
        }

        /* Footer */
        footer {
            background: #001f3f;
            color: white;
            text-align: center;
            padding: 2rem;
            margin: 0;
            position: relative;
            z-index: 10;
        }

        /* Fix para evitar espacios en blanco */
        

        #contacto {
            margin-bottom: 0;
        }

        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)),
                radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
                radial-gradient(1px 1px at 50px 160px, #ddd, rgba(0,0,0,0)),
                radial-gradient(1px 1px at 90px 40px, #fff, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0,0,0,0));
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: zoom 15s infinite;
            opacity: 1;
            z-index: 1;
			
			
        }

        @keyframes zoom {
            0% {
                opacity: 0;
                transform: scale(0.5);
                animation-timing-function: ease-in;
            } 
            85% {
                opacity: 1;
                transform: scale(2.5);
                animation-timing-function: linear;
            }
            100% {
                opacity: 0;
                transform: scale(3.5);
            }
        }

        /* Animaciones */
        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes float {
            0% { 
                transform: translateY(100vh) translateX(0) rotate(0deg); 
                opacity: 1; /* Start fully visible */
            }
            100% { 
                transform: translateY(-10vh) translateX(20px) rotate(360deg); 
                opacity: 1; /* End fully visible */
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.6; }
        }

        @keyframes fadeInUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Responsive */
                /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
				top: 7px
            }

            .nav-links {
                position: fixed;
                top: 50px;
                left: -110%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 123, 191, 0.95);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding-top: 2rem;
                padding-left: 2rem;
                transition: left 0.3s ease;
				overflow: auto;
				height: 100vh;
            }

            .nav-links.active {
                left: 0;
            }

            .hero-content {
                padding: 50px 5%;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-logo {
                width: 60px;
                height: 60px;
            }

            .hero-content p:nth-of-type(2) {
                padding-right: 0;
                font-size: 1.2rem;
                word-wrap: break-word;
            }

            section {
                padding: 80px 5% 30px;
                min-height: auto;
            }

            #inicio {
                min-height: 100vh;
                flex-direction: column;
                text-align: center;
            }
        }
		.logo-container{
			width: 90%;
			text-align: center;
			margin: auto;
			max-width: 350px;
			margin-bottom: 30px
		}
		.logo-ap{
			width: 100%;
		}
.back-tower {
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: 1;
	background-image: url("../img/torre.jpg");
			background-size: 100% 100%;
			background-attachment: fixed;
	background-position: center right -350px;
	background-repeat: no-repeat;
	opacity: 0.9;
	display: none;
}


.img-tower {
	width: 100%;
	height: 100%;
}

.img-whatsapp {
	width: 15px
}

