body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    line-height: 2.0rem;
    margin: 0;
    padding: 0;
    color: whitesmoke;
    overflow-x: hidden;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.header-contenedor {
    position: relative;
    width: 100%;
}

.header-img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
}

.hero {
    position: relative;
    text-align: center;
    padding: 4.0rem 2.0rem;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero .contenido-texto {
    margin-top: -3rem;
    transform: translateY(-2.0rem);
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 6.0rem;
    background: linear-gradient(135deg, #ffffff 0%, #0a6ebd 50%, #228df8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 0 30px rgba(10, 110, 189, 0.3);
    position: relative;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p.lead {
    font-size: 2.0rem;
    line-height: 4.5rem;
    margin-top: 0.2rem;
    animation: fadeIn 1.2s ease-out 0.3s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ul-hero {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(10, 110, 189, 0.2) 0%, rgba(30, 144, 255, 0.2) 100%);
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    animation: slideInUp 0.8s ease-out backwards;
    box-shadow: 0 8px 32px rgba(10, 110, 189, 0.2);
}

.ul-hero:nth-child(1) {
    animation-delay: 0.5s;
}

.ul-hero:nth-child(2) {
    animation-delay: 0.7s;
}

.ul-hero:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ul-hero:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(10, 110, 189, 0.3) 0%, rgba(30, 144, 255, 0.3) 100%);
    box-shadow: 0 12px 40px rgba(10, 110, 189, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-principal,
.contacto .btn-primary,
.contacto form button.btn-principal {
    background: linear-gradient(135deg, #0a6ebd 0%, #1e90ff 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 2.0rem;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    box-shadow: 0 10px 30px rgba(10, 110, 189, 0.4);
    text-align: center;
    line-height: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-out 1.1s backwards;
}

.btn-principal::before,
.contacto .btn-primary::before,
.contacto form button.btn-principal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-principal:hover::before,
.contacto .btn-primary:hover::before,
.contacto form button.btn-principal:hover::before {
    width: 300px;
    height: 300px;
}

.btn-principal:hover,
.contacto .btn-primary:hover,
.contacto form button.btn-principal:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.6);
}

.btn-principal:active,
.contacto .btn-primary:active,
.contacto form button.btn-principal:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    50% {
        transform: translateY(-80vh) rotate(180deg);
        opacity: 0.5;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.contenido {
    position: relative;
    background: linear-gradient(rgba(14, 13, 13, 0.25), rgba(0, 0, 0, 0.25)), url('../assets/imgs/fondo2.jpg') left/cover;
    text-align: center;
    padding: 5.0rem 0;
    transition: background 0.5s ease-in-out;
    filter: brightness(1);
    width: 100%;
}

.beneficios {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 2.0rem;
    padding-right: 2.0rem;
    width: 100%;
}

.beneficios h2 {
    margin-top: 2rem;
    color: whitesmoke;
    font-size: 2.0rem;
    margin-bottom: 2.0rem;
}

.beneficios li {
    font-size: 1.2rem;
    margin: 1.0rem 0;
}

.beneficios .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.0rem;
    justify-content: center;
}

.beneficios .col-md-4,
.beneficios .col-sm-6 {
    display: flex;
    flex-direction: column;
    flex: 0 1 30%;
}

.beneficio-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 110, 189, 0.2) 0%, rgba(30, 144, 255, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(10, 110, 189, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    color: whitesmoke;
    height: 100%;
    opacity: 0;
    transform: translateY(5rem);
    line-height: 1.5rem;
}

.beneficio-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.beneficio-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(10, 110, 189, 0.3) 0%, rgba(30, 144, 255, 0.3) 100%);
    box-shadow: 0 12px 40px rgba(10, 110, 189, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.icono {
    font-size: 2.7rem;
    margin-bottom: 1.0rem;
}

.beneficio-card h4 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 1.0rem;
}

.beneficio-card p {
    font-size: 1.2rem;
    color: whitesmoke;
}

.tarifas {
    padding: 7.0rem 2.0rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.tarifas-img {
    width: 35%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    transition: all 0.5s ease;
    cursor: pointer;
}

.tarifas-img:hover {
    transform: translateY(-10px) scale(1.05);
    filter: brightness(1.1);
}

.contacto {
    padding: 9.0rem 2.0rem;
    text-align: center;
    transition: background 0.5s ease-in-out;
    width: 100%;
}

.contacto .container {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 2.0rem;
    padding-right: 2.0rem;
    width: 100%;
}

.contacto h2 {
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
    color: whitesmoke;
}

.contacto p {
    font-size: 1.2rem;
    color: whitesmoke;
}

.contacto .botones-contacto {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contacto form {
    margin-top: 2.0rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.contacto form input[type="email"] {
    padding: 0.8rem 1.0rem;
    font-size: 1.0rem;
    border: 0.1rem solid #0a6ebd;
    border-radius: 1.0rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 400px;
    line-height: 1.5rem;
}

.contacto form input[type="email"]:focus {
    border-color: #0a6ebd;
    box-shadow: 0 0 0.5rem rgba(30, 144, 255, 0.5);
}

.correo {
    margin-top: 6rem;
}

.footer {
    display: block;
    width: auto;
    height: auto;
    text-align: center;
    max-width: none;
}

.footer .enlaces a {
    color: #0a6ebd;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.footer .enlaces a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0a6ebd 0%, #1e90ff 100%);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer .enlaces a:hover {
    color: #1e90ff;
    transform: translateY(-2px);
}

.footer .enlaces a:hover::after {
    width: 100%;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        margin-top: 2rem;
        font-size: 3rem;
        line-height: 4rem;
    }

    .hero p.lead {
        font-size: 1.8rem;
        line-height: 2.5rem;
    }

    .ul-hero {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-principal {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }

    .beneficios {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .beneficios .row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .beneficios .col-md-4,
    .beneficios .col-sm-6 {
        flex: 0 1 45%;
    }

    .beneficio-card h4 {
        font-size: 1.6rem;
    }

    .beneficio-card p {
        font-size: 1rem;
    }

    .tarifas {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .tarifas-img {
        width: 50%;
        max-width: 50%;
    }

    .contacto {
        padding: 6rem 1.5rem;
    }

    .contacto .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .contacto h2 {
        font-size: 1.8rem;
    }

    .contacto p {
        font-size: 1rem;
    }

    .contacto .btn-primary,
    .contacto .btn-outline-primary,
    .contacto form button.btn-principal {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }

    .contacto form input[type="email"] {
        width: 100%;
    }

    .footer img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2.5rem 0.5rem;
    }

    .hero h1 {
        margin-top: 2rem;
        font-size: 2.4rem;
        line-height: 3.2rem;
    }

    .hero p.lead {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .ul-hero {
        font-size: 1rem;
        padding: 0.5rem 0.5rem;
        gap: 0.5rem;
    }

    .btn-principal {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }

    .beneficios .row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .beneficios .col-md-4,
    .beneficios .col-sm-6 {
        flex: 0 1 100%;
    }

    .tarifas {
        margin-top: -3rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .tarifas-img {
        width: 50%;
        max-width: 50%;
        margin: 2rem auto;
        object-fit: contain;
    }

    .contacto {
        padding: 2rem 0.5rem;
        margin-top: -4rem;
    }

    .contacto .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .contacto h2 {
        font-size: 2.2rem;
    }

    .contacto p {
        font-size: 1.6rem;
    }

    .contacto .btn-primary,
    .contacto .btn-outline-primary,
    .contacto form button.btn-principal {
        font-size: 1.6rem;
        padding: 0.6rem 1rem;
    }

    .contacto form input[type="email"] {
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }

    .contacto .botones-contacto {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: cover;
    }

    .footer img {}
}