

html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: black;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    box-shadow: 0 1px 3px -2px black;
    background-color: #f3f3f3;
}

.logo {
    cursor: pointer;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.navbar.show {
    display: block;
    position: fixed;
    top: 60px; /* Ajusta la posición según tu diseño */
    left: 20px; /* Ajusta la posición según tu diseño */
    background-color: #fff; /* Color de fondo del menú desplegable */
    padding: 10px;
    border-radius: 5px;
    z-index: 9998; /* Asegúrate de que esté por encima del resto del contenido */
}


.navbar li {
    list-style: none;
}

.navbar li a {
    color: #213547;
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
}

.navbar li a:hover {
    color: #ff027c;
}

.text {
    flex: 1;
    display: flex;
    padding: 40px 80px;
    background: linear-gradient(100deg, #ea91bc, #e1ffea22 100%);
    position: relative; /* Necesario para la posición absoluta del hijo */
}

.left {
    margin-left: auto;
}

.left h1 {
    font-size: 80px;
    background: linear-gradient(
        to right,
        #660303 20%,
        #ec0606 40%,
        #ec0606 60%,
        #660303 80%
    );
    background-size: 200%;
    animation: shine 6s linear infinite;
    color: transparent;
    background-clip: text;
    font-family: 'Dancing Script', cursive;
    margin-top: 0;
    line-height: 1.1;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.left p {
    max-width: 50%;
    margin-top: -10px;
    font-weight: bold;
}

.left span {
    display: block;
    color: #ff027c;
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-top: 0;
}

.left button {
    display: inline-block;
    color: #fff;
    padding: 20px 40px;
    background: #ff027c;
    border: none;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.5s;
}

.left button:hover {
    background-color: #213547;
}

.right {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente si es necesario */
    height: 100%;            /* Asegúrate de que el contenedor tenga altura suficiente */
}

.right img{
    width: 400px;
}


/* footer */

footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #f3f3f3;
    width: 100%;
    box-shadow: 0 1px 3px -2px black;
    margin-top: auto; /* Empuja el footer al final de la página */
}

.foot h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
}
