@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
    background-color: rgb(231,231,231);
    font-family: 'Poppins', sans-serif;
}

footer{
    background-color: black;
    color: white;
    padding: 25px;
}

footer p{
    font-size: 0.75em;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    background: url('/assets/img/Header.png') no-repeat center center/cover;

    /* Difuminado en la parte inferior */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Filtro azul */
    z-index: 0; /* Detrás del texto */
}

.hero-content {
    position: relative;
    z-index: 1; /* Para que el texto esté por encima del filtro */
}

.hero-content h1{
    font-size: 4.5rem;
    margin: 0 30px;
}

section h2 {
    font-size: 3.5rem;
    margin: 20px 0;
}

.myCard{
    border-radius: 50px;
    box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.2);
    padding: 60px;
    background-color: white;
    transition: all 0.3s;
}
.myCard:hover {
    box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.myCard .card-body{
    margin-top: 5vh;
}
.myCard .card-body h3{
    font-size: 2rem;
}
.myCard .card-body .card-text{
    margin-top: 2rem;
    font-size: 1.25rem;
}

.features .myCard {
    height: 80vh;
}
.payment .myCard {
    width: 80%;
}
.section-1{
    margin-top: -150px
}


@media (max-width: 768px) {
    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 20px;
        background: url('/assets/img/Header.png') no-repeat center center/cover;

        /* Difuminado en la parte inferior */
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
    }

    .hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Filtro azul */
        z-index: 0; /* Detrás del texto */
    }

    .hero-content {
        position: relative;
        z-index: 1; /* Para que el texto esté por encima del filtro */
    }

    .hero-content h1{
        font-size: 3rem;
        margin: 0 15px;
    }

    section h2 {
        font-size: 2.5rem;
        margin: 20px 0;
    }

    .myCard{
        border-radius: 50px;
        box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.2);
        padding: 60px;
        background-color: white;
        transition: all 0.3s;
    }
    .myCard:hover {
        box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.5);
        transform: scale(1.05);
    }

    .myCard .card-body{
        margin-top: 5vh;
    }
    .myCard .card-body h3{
        font-size: 2rem;
    }
    .myCard .card-body .card-text{
        margin-top: 2rem;
        font-size: 1.25rem;
    }

    .features .myCard {
        height: 80vh;
    }
    .features .row {
        gap: 50px;
    }
    .payment .myCard {
        width: 100%;
    }

    .custom-toggler {
        border: none;
        padding: 8px;
        border-radius: 5px;
    }

    .custom-toggler .navbar-toggler-icon {
        filter: invert(1);
    }
}