* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}

body {
    background-image: linear-gradient(rgba(0, 0, 255, 0), rgba(0, 0, 0, 0.8), rgba(0, 0, 255, 0.8)), url(img/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(4px);
}

.cabecera {
    display: flex;
    justify-content: space-between;
    background-color: black;
    height: 7vh;
    align-items: center;
    padding: 0px 15px;
}

.logo {
    width: 130px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.botón {
    padding: 10px 24px;
    /* background-color: black; */
    /* color: white; */
    cursor: pointer;
    border: none;
    font-weight: bolder;
    font-size: 14px;
    border-radius: 8px;
}

.button-black {
    background-color: black;
    color: white;
}

.button-blue {
    background-color: #002be7;
    color: white;
}

.button-black:hover {
    background-color: black;
}

.button-blue:hover {
    background-color: #0021b2;
}

.button-blue::after {
    content: "SUSCRÍBETE AHORA";
}

/* fin nav o barra negra superior */

/* inicio banner o contenido inicial*/
.banner-inicial {
    display: flex;
    flex-direction: column;
    /* background-color: red; */
    height: 93vh;
    justify-content: center;
    color: white;
    align-items: center;
}

.img-principal {
    width: 400px;
    filter: brightness(0) invert(1);

}

.ver {
    font-size: 40px;
    margin-top: 16px;
}

.planes {
    font-size: 28px;
    margin-top: 32px;
}

.precio {
    font-weight: bold;
}

.button-blue2 {
    padding: 13px 24px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.4s
}

.button-blue2:hover {
    background-color: #0021b2;
    transform: scale(1.08);
    font-weight: bolder;
}

.ver:hover {
    transform: rotateX(360deg);
    transition: 0.6s
}

.texto {
    display: none;
}

@media screen and (max-width:600px) {
    .button-blue::after {
        content: "SUSCRÍBETE";
    }

    .botón {
        /* padding: 10px 20px; */
        padding: 10px;
        font-size: 13px;
    }

    .cabecera {
        height: 6vh;
    }

    .banner-inicial {
        height: 94vh;
        text-align: center;
    }

    .img-principal {
        width: 300px;
        height: 91px;
    }

    .ver {
        font-size: 30px;
    }

    .texto {
        display: block;
        font-size: 20px;
        margin-top: 240px;
    }
}
