
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Jost", serif;
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
}


/*     MAIN      */


.presentacion {
    background-color: #281549;
    border-radius: 0; 
    overflow: hidden;
    display: flex;
    width: 100%; 
    max-width: none; 
    height: auto; 
    box-shadow: none; 
}

.left-section {
    flex: 0.7;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}

.neon-text {
    font-size: 3em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 10px #a9f, 0 0 20px #a9f, 0 0 30px #a9f;
}

.subtext {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ff0080;
    text-shadow: 0 0 10px rgb(255, 43, 170), 0 0 20px rgb(255, 43, 170), 0 0 30px rgb(255, 43, 170);
}

.contact-button {
    background: linear-gradient(to right, #8a2be2, #ff69b4);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1em;
    transition: transform 0.2s ease-in-out;
}

.contact-button:hover {
    transform: scale(1.05);
}

.right-section {
    flex: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-containera {
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    max-height: 400px; /* Ajusta la altura máxima según necesites */
}

.image-containera img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Estilos para pantallas más pequeñas */
@media (max-width: 768px) {
    .presentacion {
        flex-direction: column;
    }

    .left-section, .right-section {
        width: 100%;
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .neon-text {
        font-size: 2.5em;
    }

    .subtext {
        font-size: 1em;
    }
}



