.plans-section {
    padding: 20vh 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.plans-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Incrementar la separación entre tarjetas */
    flex-wrap: wrap;
}

.plan-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2vw;
    width: 20vw; /* Hacer las tarjetas más largas */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem 1.2rem;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0078d7;
    line-height: 1.1;
}

.plan-card p {
    margin-bottom: 15px;
}

.plan-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0078d7;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.plan-card .btn:hover {
    background-color: #005bb5;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.plan-features {
    
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.plan-features img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.plan-speed {
    font-size: 2.8rem; /* Más grande */
    font-weight: 400;
    color: #0277e4;
    margin-bottom: 5px;
    text-align: left;
    text-shadow: 10px 5px 5px rgba(2, 155, 244, 0.2); /* Sombra verde lima suave */
}

.plan-price {
    font-size: 1rem; /* Incrementar tamaño */
    font-weight: 700; /* Hacer más grueso */
    color: #333;
    margin-bottom: 15px;
    text-align: left; /* Alinear a la izquierda */
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 900px) {
    .plans-container {
        gap: 16px;
    }
    .plan-card {
        width: 40vw;
        padding: 4vw 2vw;
    }
    .plan-card h3 {
        font-size: 1.2rem;
    }
    .plan-speed {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .plan-card {
        padding: 2rem 1.2rem !important;
    }
    .plan-card h3 {
        font-size: 2rem;
        line-height: 1.0;
    }
}

@media (max-width: 700px) {
    .plans-section {
        padding: 8vh 5px;
    }
    .plans-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .plan-card {
        width: 75vw !important;
        max-width: 350px;
        min-width: 240px;
        /* Evita que sean demasiado pequeñas o grandes */
    }
    .plan-card h3 {
        font-size: 1.1rem;
    }
    .plan-speed {
        font-size: 1.5rem;
    }
    .plan-features li {
        font-size: 0.95rem;
    }
    .plan-card .btn {
        font-size: 0.95rem;
        padding: 8px 16px;
    }
}

@media (max-width: 500px) {
    .plans-section {
        padding: 4vh 2px;
    }
    .plan-card {
        width: 98vw;
        max-width: 99vw;
        padding: 8vw 2vw;
    }
    .plan-card h3 {
        font-size: 1rem;
    }
    .plan-speed {
        font-size: 1.2rem;
    }
    .plan-features li {
        font-size: 0.9rem;
    }
}
