body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    border-bottom: 2px solid #ffb400; /* Línea inferior para la separación */
}

.navbar-nav .nav-link {
    color: #005b96 !important; /* Color azul del texto */
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #ffb400 !important; /* Color amarillo del texto al pasar el ratón */
}

.hero {
    background-color: #e9f0f5;
}

.hero h1 {
    color: #005b96; /* Color azul del texto del héroe */
    font-weight: 700;
}

.hero select {
    border: 2px solid #005b96; /* Borde azul del selector */
}

.planes .card {
    border: none; /* Sin borde */
    border-radius: 10px; /* Bordes redondeados */
    transition: transform 0.3s, box-shadow 0.3s;
}

.planes .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.planes .card-title {
    color: #005b96; /* Color azul del título de las tarjetas */
    font-weight: 700;
}

.planes .card-text {
    color: #333; /* Color del texto de las tarjetas */
    font-weight: 400;
}

.planes .btn-primary {
    background-color: #005b96;
    border-color: #005b96;
    transition: background-color 0.3s, border-color 0.3s;
}

.planes .btn-primary:hover {
    background-color: #003f73; /* Color más oscuro al pasar el ratón */
    border-color: #003f73;
}

footer {
    background-color: #005b96;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #ffb400; /* Color amarillo de los enlaces en el pie de página */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    text-decoration: none;
}

.social-media a img {
    height: 30px;
    margin: 0 10px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
}
.swal2-popup.left-aligned .swal2-html-container {
    text-align: left;
}