* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-bottom: 1px solid #f0f0f0;
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #001B5F;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #001B5F;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00A8FF;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #001B5F 0%, #003D9F 50%, #0066CC 100%);
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center -5%;
    background-attachment: fixed;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: rgba(0, 168, 255, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(0, 168, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8em;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 35px;
    opacity: 0.98;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}


.hero-btn {
    background: #4B2FD9;
    color: white;
    padding: 14px 55px;
    border: none;
    font-size: 1.05em;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(75, 47, 217, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background: #3A1FB0;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(75, 47, 217, 0.45);
}
/* DESCRIPCIÓN */
.description {
    background: white;
    padding: 70px 20px;
    text-align: center;
}

.description-container {
    max-width: 1000px;
    margin: 0 auto;
}

.description h2 {
    font-size: 2.5em;
    color: #001B5F;
    margin-bottom: 35px;
    line-height: 1.3;
    font-weight: 800;
}

.description-text {
    font-size: 1.08em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight {
    color: #001B5F;
    font-weight: 800;
}

/* FORMULARIO */
.form-section {
    background: #f8f9fa;
    padding: 70px 20px;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 50px 45px;
    border-radius: 15px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.08);
}

.form-container h3 {
    color: #001B5F;
    margin-bottom: 35px;
    font-size: 1.9em;
    font-weight: 800;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #001B5F;
    font-weight: 700;
    font-size: 0.95em;
}

.form-group input {
    width: 100%;
    padding: 13px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 0.98em;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #00A8FF;
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.08);
}

.checkbox-group {
    margin: 20px 0;
    text-align: left;
    font-size: 0.92em;
    line-height: 1.6;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-group label {
    display: inline;
    font-weight: 500;
    color: #666;
    cursor: pointer;
}

.checkbox-group a {
    color: #4B2FD9;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4B2FD9 0%, #00A8FF 100%);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(75, 47, 217, 0.35);
}

/* PLANES */
.plans-section {
    background: white;
    padding: 90px 20px;
}

.plans-container {
    max-width: 1350px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #001B5F;
    margin-bottom: 65px;
    font-weight: 800;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plan-card {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border: 2px solid #e8e8e8;
    border-radius: 18px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4B2FD9 0%, #00A8FF 100%);
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #00A8FF;
}

.plan-speed {
    font-size: 2.8em;
    font-weight: 900;
    color: #001B5F;
    margin-bottom: 5px;
}

.plan-unit {
    color: #999;
    font-size: 0.95em;
    margin-bottom: 25px;
    font-weight: 600;
}

.plan-benefits {
    background: white;
    padding: 22px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
    border: 1px solid #f5f5f5;
}

.plan-benefits h4 {
    color: #001B5F;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-benefits li {
    list-style: none;
    padding: 9px 0;
    color: #666;
    font-size: 0.92em;
    border-bottom: 1px solid #f7f7f7;
    font-weight: 500;
}

.plan-benefits li:last-child {
    border-bottom: none;
}

.plan-benefits li::before {
    content: '✓ ';
    color: #00A8FF;
    font-weight: bold;
    margin-right: 8px;
}

.plan-price {
    font-size: 2.4em;
    color: #001B5F;
    font-weight: 900;
    margin: 22px 0;
}

.plan-iva {
    color: #999;
    font-size: 0.8em;
    margin-bottom: 15px;
}

.plan-price-note {
    font-size: 0.85em;
    color: #999;
    margin: 18px 0;
}

.plan-btn {
    width: 100%;
    background: linear-gradient(135deg, #4B2FD9 0%, #00A8FF 100%);
    color: white;
    padding: 11px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.9em;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(75, 47, 217, 0.3);
}

/* SERVICIOS */
.services-section {
    background: #f5f7fa;
    padding: 90px 20px;
}

.services-container {
    max-width: 1350px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 65px;
}

.services-intro h2 {
    font-size: 2.5em;
    color: #001B5F;
    margin-bottom: 15px;
    font-weight: 800;
}

.services-intro p {
    font-size: 1.08em;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: #00A8FF;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #001B5F;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 800;
}

.service-card p {
    color: #666;
    margin-bottom: 18px;
    font-size: 0.92em;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8em;
    color: #4B2FD9;
    font-weight: 900;
    margin: 15px 0;
}

/* OFERTAS */
.offers-section {
    background: linear-gradient(135deg, #4B2FD9 0%, #00A8FF 100%);
    padding: 75px 20px;
    text-align: center;
    color: white;
}

.offers-container {
    max-width: 1000px;
    margin: 0 auto;
}

.offers-section h2 {
    font-size: 2.5em;
    margin-bottom: 45px;
    font-weight: 800;
}

.offers-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 45px 0;
}

.offer-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 35px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.offer-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 800;
}

.offer-item p {
    font-size: 0.95em;
    opacity: 0.9;
}

footer {
    background: #001B5F;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}
/* PREGUNTAS FRECUENTES - FAQ ACORDEÓN */
.faq-section {
    background: white;
    padding: 90px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f9fbff;
}

.faq-item:hover {
    border-color: #00A8FF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    color: #001B5F;
    font-weight: 700;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin: 0;
    padding: 0;
}

.faq-question::after {
    content: '▼';
    color: #00A8FF;
    font-size: 0.8em;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    color: #666;
    margin-top: 15px;
    line-height: 1.8;
    display: none;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* MEDIA QUERIES - RESPONSIVE MÓVIL */

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offers-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* NAVBAR */
    .navbar-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 0.85em;
    }

    /* HERO */
    .hero {
        min-height: 500px;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .hero-btn {
        padding: 12px 40px;
        font-size: 0.95em;
    }

    /* DESCRIPCIÓN */
    .description {
        padding: 50px 20px;
    }

    .description h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .description-text {
        font-size: 1em;
    }

    /* FORMULARIO */
    .form-container {
        padding: 30px 25px;
    }

    .form-container h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.9em;
    }

    .form-group input {
        padding: 11px;
        font-size: 16px;
    }

    .checkbox-group {
        font-size: 0.85em;
        line-height: 1.5;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.95em;
        margin-top: 20px;
    }

    /* PLANES */
    .plans-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plan-speed {
        font-size: 2em;
    }

    .plan-price {
        font-size: 1.8em;
    }

    .plan-btn {
        padding: 10px;
        font-size: 0.85em;
    }

    /* SERVICIOS */
    .services-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 2.5em;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 1em;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.85em;
        margin-bottom: 12px;
    }

    .service-price {
        font-size: 1.4em;
        margin: 10px 0;
    }

    /* OFERTAS */
    .offers-section {
        padding: 50px 20px;
    }

    .offers-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .offers-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .offer-item {
        padding: 25px 20px;
    }

    .offer-item h3 {
        font-size: 1.1em;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        padding: 15px;
        margin-bottom: 12px;
    }

    .faq-question {
        font-size: 1em;
    }

    .faq-answer {
        font-size: 0.9em;
        margin-top: 12px;
    }

    /* FOOTER */
    footer {
        padding: 30px 20px;
    }

    .footer-content p {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    /* NAVBAR */
    .navbar-container {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 12px;
        font-size: 0.75em;
    }

    /* HERO */
    .hero {
        min-height: 400px;
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 1.8em;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 10px 30px;
        font-size: 0.9em;
    }

    /* DESCRIPCIÓN */
    .description {
        padding: 40px 15px;
    }

    .description h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .description-text {
        font-size: 0.95em;
    }

    /* FORMULARIO */
    .form-container {
        padding: 20px 15px;
        max-width: 100%;
    }

    .form-container h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .form-group input {
        padding: 10px;
        font-size: 16px;
    }

    .checkbox-group {
        font-size: 0.8em;
        line-height: 1.4;
    }

    /* PLANES */
    .plan-card {
        padding: 20px 15px;
    }

    .plan-speed {
        font-size: 1.8em;
    }

    .plan-benefits h4 {
        font-size: 0.85em;
    }

    .plan-benefits li {
        font-size: 0.85em;
        padding: 6px 0;
    }

    .plan-price {
        font-size: 1.5em;
        margin: 15px 0;
    }

    /* SERVICIOS */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 20px 12px;
    }

    .service-icon {
        font-size: 2.2em;
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 0.95em;
    }

    .service-card p {
        font-size: 0.8em;
    }

    /* OFERTAS */
    .offers-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .offer-item {
        padding: 20px 15px;
    }

    .offer-item h3 {
        font-size: 1em;
    }

    .offer-item p {
        font-size: 0.85em;
    }

    /* FAQ */
    .faq-item {
        padding: 12px;
        margin-bottom: 10px;
    }

    .faq-question {
        font-size: 0.95em;
    }

    .faq-question::after {
        font-size: 0.7em;
        margin-left: 10px;
    }

    .faq-answer {
        font-size: 0.85em;
        margin-top: 10px;
        padding-top: 10px;
    }
}
/* ========================================
   BOTÓN WHATSAPP FLOTANTE
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
    animation: bounce-whatsapp 3s infinite;
}

@keyframes bounce-whatsapp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    animation: none;
}

/* ========================================
   CAJA DE TEXTO
======================================== */

.whatsapp-text-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover .whatsapp-text-box {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ========================================
   MANO SEÑALANDO
======================================== */

.whatsapp-hand {
    font-size: 20px;
    display: inline-block;
    animation: point-finger 1.5s infinite;
}

@keyframes point-finger {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(3px) rotate(-5deg);
    }
    75% {
        transform: translateX(-3px) rotate(5deg);
    }
}

.whatsapp-float:hover .whatsapp-hand {
    animation: point-finger-fast 0.5s infinite;
}

@keyframes point-finger-fast {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* ========================================
   TEXTO
======================================== */

.whatsapp-label {
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ========================================
   ÍCONO DE WHATSAPP - SIN FILTROS
======================================== */

.whatsapp-icon-box {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-icon-box svg {
    /* NO FILTROS - El SVG ya tiene fill="white" */
    transition: transform 0.3s ease;
}

.whatsapp-icon-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: ripple-whatsapp 2s infinite;
    z-index: -1;
}

@keyframes ripple-whatsapp {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.whatsapp-float:hover .whatsapp-icon-box {
    transform: rotate(360deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

/* ========================================
   BADGE DE NOTIFICACIÓN
======================================== */

.whatsapp-icon-box::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    background: #FF3E4D;
    border: 3px solid white;
    border-radius: 50%;
    animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .whatsapp-text-box {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .whatsapp-hand {
        font-size: 18px;
    }
    
    .whatsapp-icon-box {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon-box svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-text-box {
        display: none;
    }
    
    .whatsapp-icon-box {
        width: 60px;
        height: 60px;
    }
}
/* Contenedor de plan */
.plan-icon {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(to bottom, #f8fafc, white);
    border-radius: 15px 15px 0 0;
    margin-bottom: 20px;
    position: relative;
}

/* Efecto hover en el SVG */
.plan-icon svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.15));
}

.plan-icon:hover svg {
    transform: scale(1.05);
}

/* ========== PLAN 700 - RECOMENDADO ========== */
.plan-icon.recommended-plan {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #34d399;
}

/* Badge RECOMENDADO para plan 700 */
.plan-icon.recommended-plan::before {
    content: "RECOMENDADO";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #10B981;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Animación para el SVG recomendado */
.recommended-icon {
    animation: pulse-glow-green 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
}

@keyframes pulse-glow-green {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 6px 18px rgba(16, 185, 129, 0.6));
    }
}

/* Número especial para plan 700 recomendado */
.plan-speed.recommended {
    color: #10B981;
    font-size: 68px;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    animation: pulse-number-green 2s ease-in-out infinite;
}

@keyframes pulse-number-green {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* ========== PLAN 2000 - MÁS RÁPIDO ========== */
.plan-icon.ultra-plan {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid #fb923c;
}

/* Badge MÁS RÁPIDO para plan 2000 */
.plan-icon.ultra-plan::before {
    content: "MÁS RÁPIDO";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F97316;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

/* Animación para el SVG ultra */
.ultra-icon {
    animation: pulse-glow 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.4));
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.4));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 6px 18px rgba(249, 115, 22, 0.6));
    }
}

/* Número especial para plan ultra */
.plan-speed.ultra {
    color: #F97316;
    font-size: 72px;
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
    animation: pulse-number 2s ease-in-out infinite;
}

@keyframes pulse-number {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* ========== ESTILOS GENERALES ========== */
/* Números de velocidad */
.plan-speed {
    font-size: 64px;
    font-weight: 900;
    color: #1e3a8a;
    line-height: 1;
    margin: 15px 0 5px;
    font-family: 'Poppins', 'Arial', sans-serif;
}

/* Unidad Mbps */
.plan-unit {
    font-size: 20px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .plan-icon svg {
        width: 65px;
        height: 65px;
    }
    
    .plan-icon.recommended-plan::before,
    .plan-icon.ultra-plan::before {
        font-size: 9px;
        padding: 4px 10px;
        top: 8px;
        right: 8px;
    }
    
    .plan-speed {
        font-size: 48px;
    }
    
    .plan-speed.recommended {
        font-size: 52px;
    }
    
    .plan-speed.ultra {
        font-size: 54px;
    }
    
    .plan-unit {
        font-size: 16px;
    }
}
/* Grid de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

/* Tarjeta de servicio */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #6366F1;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 15px 0 10px;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Precio del servicio */
.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.service-price .price {
    font-size: 28px;
    font-weight: 900;
    color: #6366F1;
}

.service-price .price-note {
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
}
/* Estilo para el select de ciudades */
select#ciudad {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: white;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    appearance: none; /* Quitar estilo nativo del navegador */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236366F1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

select#ciudad:hover {
    border-color: #6366F1;
}

select#ciudad:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Estilo para cuando no se ha seleccionado nada */
select#ciudad:invalid {
    color: #94a3b8;
}

/* Estilo para las opciones */
select#ciudad option {
    color: #1e293b;
    padding: 10px;
}

select#ciudad option:first-child {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    select#ciudad {
        font-size: 14px;
        padding: 10px 35px 10px 12px;
    }
}
