      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #001a33;
            --secondary: #003366;
            --accent: #004d99;
            --highlight: #00a8e8;
            --light: #f1f1f1;
            --dark-blue: #1a3a52;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--primary);
            color: var(--light);
            overflow-x: hidden;
        }

        /* Nuevo Men Moderno */
        .modern-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(0, 26, 51, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 168, 232, 0.1);
            transition: all 0.3s ease;
			text-align: center
        }

        .modern-nav.scrolled {
            background: rgba(0, 26, 51, 0.98);
            box-shadow: 0 4px 30px rgba(0, 168, 232, 0.2);
        }

        .nav-container {
            max-width: 850px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
			
			
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #00a8e8, #0066cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .nav-logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            gap: 10px;
            list-style: none;
        }

        .nav-item {
            position: relative;
			
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            color: var(--light);
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
			margin: auto
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 168, 232, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .nav-link:hover::before {
            left: 100%;
        }

        .nav-link:hover {
            background: linear-gradient(135deg, rgba(0, 168, 232, 0.15), rgba(0, 102, 204, 0.1));
            transform: translateY(-2px);
        }

        .nav-link i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .nav-link:hover i {
            transform: scale(1.2) rotate(5deg);
        }

        /* Indicador activo */
        .nav-link.active {
            background: linear-gradient(135deg, rgba(0, 168, 232, 0.2), rgba(0, 102, 204, 0.15));
            border: 1px solid rgba(0, 168, 232, 0.3);
        }

        /* Hamburger Menu para mvil */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--highlight);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }


        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 26, 51, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                gap: 0;
                padding: 30px;
                transition: left 0.3s ease;
				
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-link {
                width: 100%;
                justify-content: flex-start;
                padding: 18px 24px;
                font-size: 1.2rem;
                border-radius: 15px;
                margin-bottom: 10px;
            }

            .nav-link i {
                font-size: 1.3rem;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 70px;
        }

        .hero-bg {
            position: absolute;
            width: 100%;
            height: 130%;
            background: linear-gradient(135deg, rgba(0,64,127,0.40), rgba(0,0,0,0.40));
            border-bottom-left-radius: 50%;
            border-top-left-radius: 50%;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--highlight);
            border-radius: 50%;
            animation: float 15s infinite;
            opacity: 0.6;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            50% {
                transform: translate(100px, -100px) scale(1.5);
                opacity: 1;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
        }

        .logo-container {
            margin-bottom: 30px;
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .logo-container img {
            max-width: 350px;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 168, 232, 0.6));
            border-radius: 8px;
            opacity: 0.9;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff, var(--highlight));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease forwards 0.5s;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #00a8e8, #0066cc);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease forwards 1s;
            opacity: 0;
            box-shadow: 0 5px 20px rgba(0, 168, 232, 0.5);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 168, 232, 0.7);
        }

        /* Secciones */
        section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 3.5rem;
            margin-bottom: 50px;
            text-align: center;
            background: linear-gradient(135deg, #00a8e8, #0066cc, #004d99);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }

        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .about-card {
            background: var(--secondary);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .about-card:hover {
            transform: translateY(-10px);
            border-color: var(--highlight);
            box-shadow: 0 10px 40px rgba(0, 168, 232, 0.3);
        }

        .about-card h3 {
            color: var(--highlight);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        /* Scroll suave */
        html {
            scroll-behavior: smooth;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            h2 { font-size: 2rem; }
            .logo-container img { max-width: 180px; }
        }

@media (max-width: 699px) {
    .menu {
        /* The menu container itself doesn't need many styles now */
        pointer-events: none; /* Pass clicks through the container */
    }

    .menu-open {
        display: none; /* Keep the checkbox hidden */
    }

    .menu-open-button {
        position: fixed; /* Keep button in view */
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: var(--highlight);
        border-radius: 50%;
        z-index: 2000;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(0,168,232,0.18);
        pointer-events: auto; /* The button is clickable */
    }

    /* Hide menu items by default */
    .menu-item {
        display: none;
    }

    /* When the menu is checked, create a full-screen overlay */
    .menu-open:checked ~ .menu-item {
        display: flex;
        align-items: center;
        gap: 15px;
        
        /* Reset old styles */
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 0;
        background: var(--secondary);
        color: #fff;
        justify-content: flex-start;
        font-size: 1.2rem;
        box-shadow: none;
        padding: 20px;
        opacity: 1;
        pointer-events: auto;
        transition: none;
        transform: none;
    }
    
    .menu-open:checked ~ .menu-item:first-of-type {
        margin-top: 100px; /* Push list down below button */
    }

    .menu-open:checked ~ .menu-item p {
        display: block; /* Show text */
        position: static;
        opacity: 1;
        font-size: 1rem;
        width: auto;
    }
    
    .menu-open:checked ~ .menu-item i {
        font-size: 1.2rem;
    }
}
@charset "utf-8";
/* CSS Document */

       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #001a33;
            --secondary: #003366;
            --accent: #004d99;
            --highlight: #00a8e8;
            --light: #f1f1f1;
            --dark-blue: #1a3a52;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--primary);
            color: var(--light);
            overflow-x: hidden;
        }

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    filter: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: none;
}



.menu-item, .menu-open-button {
    background: #00a8e8;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    text-align: center;
    line-height: 60px;
    transform: translate3d(0, 0, 0);
    transition: transform ease-out 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure the open button is above the menu items */
    z-index: 1010;
}

.menu-open {
  display: none;
}

.hamburger {
	/*
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  transition: transform 200ms;
	*/
}

.hamburger-1 {
  transform: translate3d(0, -8px, 0);
}

.hamburger-2 {
  transform: translate3d(0, 0, 0);
}

.hamburger-3 {
  transform: translate3d(0, 8px, 0);
}

.menu-open:checked + .menu-open-button .hamburger-1 {
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.menu-open:checked + .menu-open-button .hamburger-2 {
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.menu-open:checked + .menu-open-button .hamburger-3 {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}



/* Remove underline for anchor links inside the menu and improve spacing */


.menu-item:hover {
  background: #0066cc;
  color: #fff;
}

.menu-open:checked ~ .menu-item {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-open:checked ~ .menu-item:nth-child(3) {
  transition-duration: 180ms;
  transform: translate3d(-110px, 0, 0);
}

.menu-open:checked ~ .menu-item:nth-child(4) {
  transition-duration: 280ms;
  transform: translate3d(-80px, -80px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(5) {
  transition-duration: 380ms;
  transform: translate3d(0, -110px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(6) {
  transition-duration: 480ms;
  transform: translate3d(80px, -80px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(7) {
  transition-duration: 580ms;
  transform: translate3d(110px, 0, 0);
}

.menu-item i {
    font-size: 1.5em;
}

.menu-item p {
    display: block;
    position: absolute;
    bottom: -25px;
    width: 100px;
    text-align: center;
    left: -20px;
    opacity: 0;
    transition: opacity 0.3s;
	font-size: 14px;
}

.menu-item:hover p {
    opacity: 1;
}

/* Desktop: show a horizontal animated menu instead of compact gooey */
@media (min-width: 700px) {
    .menu {
        justify-content: center;
        align-items: flex-start;
        background: none;
    }
    .menu-open, .menu-open-button {
        display: none;
    }
    .menu-item {
        position: relative;
        width: auto;
        height: auto;
        border-radius: 18px;
        background: transparent;
        color: var(--light);
        padding: 16px 28px 16px 28px;
        line-height: 1;
        top: auto;
        right: auto;
        transform: none;
        transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), background 250ms cubic-bezier(0.22, 1, 0.36, 1);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        box-shadow: none;
        border: none;
        text-decoration: none;
        overflow: visible;
        background: transparent;
    }
    .menu-item i { font-size: 1.0rem; color: var(--light); }
    .menu-item p {
        position: static;
        bottom: auto;
        left: auto;
        width: auto;
        opacity: 1;
        font-size: 1rem;
        transform: translateY(0);
        color: var(--light);
        display: inline-block;
        text-decoration: none;
    }
    .menu-item:hover {
        transform: translateY(-6px);
        background: linear-gradient(135deg, rgba(0,168,232,0.12), rgba(0,102,204,0.08));
    }
    .menu-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 8px;
        width: 10px;
        border-top-left-radius: 18px;
        border-bottom-left-radius: 18px;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        background: linear-gradient(180deg, var(--highlight), #00d0ff 80%);
        box-shadow: 0 2px 12px 0 rgba(0,168,232,0.18);
        transform: scaleY(0.2) translateX(-12px);
        opacity: 0;
        transition: 
            transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1;
    }
    .menu-item:hover::before, .menu-item:focus-visible::before {
        transform: scaleY(1) translateX(0);
        opacity: 1;
        box-shadow: 0 4px 24px 0 rgba(0,168,232,0.28);
    }
}





        /* Hero Section con animaciones */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            width: 100%;
            height: 130%;
            /*background: linear-gradient(135deg, var(--primary), var(--accent));*/
			/*background: rgba(0,64,127,0.40);*/
			background: linear-gradient(135deg, rgba(0,64,127,0.40), rgba(0,0,0,0.40));
			/*background: rgba(0,0,0,1.00)*/
			border-bottom-left-radius: 50%;
			/*border-bottom-right-radius: 120px;*/
			border-top-left-radius: 50%;
			/*border-top-right-radius: 120px;*/
			
			
			
        }

        .particles {
            /*position: absolute;
            width: 100%;
            height: 100%;*/
			
			position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--highlight);
            border-radius: 50%;
            animation: float 15s infinite;
            opacity: 0.6;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            50% {
                transform: translate(100px, -100px) scale(1.5);
                opacity: 1;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
        }

        .logo-container {
            margin-bottom: 30px;
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .logo-container img {
            max-width: 350px;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 168, 232, 0.6));
			border-radius: 8px;
			opacity: 0.7;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff, var(--highlight));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 2s ease-in-out infinite;
        }

        @keyframes titleGlow {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(233, 69, 96, 0.8));
            }
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #00a8e8, #0066cc);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1s;
            box-shadow: 0 5px 20px rgba(0, 168, 232, 0.5);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 168, 232, 0.7);
        }

        /* Secciones */
        section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 3.5rem;
            margin-bottom: 50px;
            text-align: center;
            background: linear-gradient(135deg, #00a8e8, #0066cc, #004d99);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            font-weight: bold;
            animation: titleShine 3s ease-in-out infinite;
        }

        @keyframes titleShine {

            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(0, 168, 232, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 25px rgba(0, 168, 232, 0.8));
            }
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #00a8e8, transparent);
            border-radius: 2px;
        }

        /* Nosotros - Cards */
        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .about-card {
            background: var(--secondary);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .about-card:hover {
            transform: translateY(-10px);
            border-color: var(--highlight);
            box-shadow: 0 10px 40px rgba(233, 69, 96, 0.3);
        }

        .about-card h3 {
            color: var(--highlight);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        /* Planes - Estilo Premium */
        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .plan-card {
            /*background: linear-gradient(145deg, #f7fbff, #e6f3ff);*/
			/*background: linear-gradient(135deg, #000000 0%, #0d6efd 100%);*/
			background: linear-gradient(135deg, white 0%, white 100%);

            padding: 25px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden; /* This is key for the ribbon effect */
            border: 1px solid #dbeeff;
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 168, 232, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            z-index: 1;
        }

        .plan-card:hover::before {
            left: 100%;
        }

        .plan-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 168, 232, 0.03), rgba(0, 102, 204, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .plan-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 40px rgba(0, 168, 232, 0.3);
            border-color: #00a8e8;
        }

        .plan-card:hover::after {
            opacity: 1;
        }

        .plan-card.popular {
            background: linear-gradient(145deg, #fff5e6, #ffe6cc);
            border: 2px solid #00a8e8;
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 168, 232, 0.4);
        }

        .plan-card.popular:hover {
            transform: translateY(-10px) scale(1.08);
            box-shadow: 0 20px 50px rgba(0, 168, 232, 0.5);
        }

        .popular-badge {
            background: linear-gradient(135deg, #ff9500, #ffb84d);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 15px;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
            animation: pulse 2s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 20px rgba(255, 149, 0, 0.6);
            }
        }

        .plan-speed {
            font-size: 3.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #00a8e8, #0066cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 40px 0 20px 0; /* Increased top margin for ribbon */
            text-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
            position: relative;
            z-index: 2;
        }

        .plan-price {
            font-size: 3rem;
            margin: 20px 0;
            font-weight: bold;
            color: #001a33;
            position: relative;
            z-index: 2;
        }

        .plan-type {
            background: linear-gradient(135deg, #00a8e8, #0066cc);
            color: white;
            padding: 12px;
            border-radius: 15px;
            margin: 20px 0;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
        }

        .plan-title {
            position: absolute;
            top: 25px;
            right: -45px;
            width: 200px;
            padding: 10px;
            background: linear-gradient(135deg, #00a8e8, #0066cc);
            color: white;
            text-align: center;
            font-weight: bold;
            font-size: 1.1rem;
            /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
            transform: rotate(45deg);
            z-index: 3; /* Ensure ribbon is on top */
        }
        
        /* Adjustments for the popular card's ribbon */
        .plan-card.popular .plan-title {
            background: linear-gradient(135deg, #ff9500, #ffb84d);
        }

        .plan-details {
            color: #555;
            font-weight: 500;
            margin-top: 15px;
            position: relative;
            z-index: 2;
			
        }

        .plan-folio {
            font-size: 0.9rem;
            color: #777;
            margin-top: 5px;
            position: relative;
            z-index: 2;
        }
        
        .whatsapp-plan-button {
            display: inline-block;
            padding: 20px 25px;
            /*background: #25D366;*/
			background: #0d6efd;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: 20px;
            /*box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);*/
            position: relative;
            z-index: 2;
			width: 90%;
			margin-top: 30px;
        }

        .whatsapp-plan-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }

        /* Cobertura */
        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .coverage-card {
            background: var(--secondary);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--highlight);
        }

        .coverage-card h3 {
            color: var(--highlight);
            margin-bottom: 20px;
        }

        .coverage-list {
            list-style: none;
            line-height: 2;
        }

        .coverage-list li::before {
            content: '📍 ';
            margin-right: 10px;
        }

        /* Contacto */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
			margin-top: 30px;
			font-size: 18px;
        }

        .contact-card {
            background: var(--secondary);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        }

        /* Instalación */
        .install-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .install-card {
            background: var(--secondary);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
        }

        .install-price {
            font-size: 2.5rem;
            color: var(--highlight);
            margin: 20px 0;
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            h2 {
                font-size: 2rem;
            }

            .coverage-grid,
            .plans-container {
                grid-template-columns: 1fr;
            }

            .nav-container {
                /*top: 10px;
                right: 10px;*/
            }

            .nav-toggle {
                width: 50px;
                height: 50px;
            }

            .logo-container img {
                max-width: 180px;
            }
        }

        /* Scroll suave */
        html {
            scroll-behavior: smooth;
        }
		.btn-legal{
			/*background: var(--accent); padding: 10px 20px; border-radius: 5px; text-decoration: none; color: white; transition: all 0.5s ease; 
			box-shadow: 0 4px 20px rgba(0, 168, 232, 0.5);
			width: auto;*/
			background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(25, 118, 210, 0.6));
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;  /* 👈 Hace que el ancho sea el del texto */
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(25, 118, 210, 0.4);
		}
		.btn-legal:hover{
			/*background: #0d6efd;
			box-shadow: 0 4px 40px rgba(0, 168, 232, 0.5);*/
			box-shadow: 0 0 20px rgba(25, 118, 210, 0.8);
  transform: scale(1.03);
		}
		.btn-container{
			 display: flex;
  justify-content: center;
  flex-wrap: wrap;       /* 👈 Permite que los botones bajen de línea */
  gap: 20px;             /* Espacio entre botones */
  margin-top: 80px;
		}
.tarifas {
	color: white;
	text-align: center;
	width: 100%;
	margin: auto;
	margin-bottom: 20px;
	font-size: 18px;
	background: #0066cc;
	padding: 15px;
	border-radius: 8px;
}
.tarifas a{
	color: white;
}

.disponibles {
	color: white;
	/*background: white;*/
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	margin-top: 20px;
	/*background: linear-gradient(135deg, black 0%, white 100%);*/
	background: var(--secondary)
}



.format {
	color: brown;
	cursor: pointer;
	z-index: 99999;
	position: relative;
}

.agregado {
	color: white;
	text-align: center;
	padding: 10px;
	margin-top: 30px;
	font-size: 18px;
}

.btns-leg a {
	background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(25, 118, 210, 0.6)); 
	color: #fff; 
	padding: 10px 20px; 
	border-radius: 25px; 
	text-decoration: none; 
	/*font-weight: 500; */
	display: inline-block; 
	transition: 0.3s ease; 
	box-shadow: 0 0 10px rgba(25, 118, 210, 0.4); border: dotted 1px white;
}
.btns-legal:hover {
	/*transform: rotate(4deg);*/
	background-color: rgba(25, 118, 210, 0.8);
	filter: drop-shadow(0 10px 30px rgba(0, 168, 232, 0.6));
	
}
