/* Estilo general */
body {
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    /* background: rgb(2,0,36);
background: linear-gradient(6deg, rgba(2,0,36,1) 0%, rgba(25,82,108,1) 32%, rgba(0,212,255,1) 100%); */
}

.navbar-brand {
    font-weight: bold;
    color: #007bff !important;
}
/* Estilo del encabezado de la página */
#home {
    height: 50vh;
    padding-top: 50px;
    background: url('https://cdn.pixabay.com/photo/2018/05/14/16/54/cyber-3400789_1280.jpg') no-repeat center center/cover;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#home h1 {
    font-size: 3.5em;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#home p {
    font-size: 1.3em;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Contenedor principal */
.container {
    width: 85%;
    margin: 20px auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


#plans h2 {
    font-size: 2.5em;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}

#plans p {
    font-size: 1.2em;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}
/* Tarjetas */
.card {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Títulos */
.card h4 {
    font-size: 1.6em;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(to right, #4a90e2, #007aff);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Precios */
.card .price {
    font-size: 1.8em;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: bold;
    margin: 15px 0;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 8px rgba(255, 126, 95, 0.5);
}

/* Detalles de velocidad */
.card .details {
    font-size: 1em;
    color: #555555;
    text-align: left;
    width: 100%;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
    border-left: 4px solid #007aff;
}

/* Botón */
.btn-primary {
    margin-top: 15px;
    background-color: #ffff;
    color: #007aff;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 25px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #005bb5;
    transform: scale(1.1);
}

footer {
    background-color: #343a40;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}

footer .informacion h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

footer p {
    font-size: 1rem;
    margin: 5px 0;
}

footer i {
    color: #007bff;
    margin-right: 8px;
}
/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
    }
}

@media (max-width: 576px) {
    #home h1 {
        font-size: 2.5em;
    }

    #home p {
        font-size: 1em;
    }

    .card {
        width: 90%;
    }
}
