/* Estilos del Pop-up */
/* .popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    /* Fondo velado 
}

.popup-contenido {
    background-color: #fefefe;
    
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
} */



.popup {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup-contenido {
    /* Ajusta el estilo de la ventana emergente según sea necesario */
    position: relative;
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    max-width: 600px;
    margin: auto;
    margin-top: 120px;
    width: 80%;
}

.popup-contenido h2 {
    font-family: 'Raleway Thin', sans-serif;
    font-size: 34px;
    color: #232321;
    margin-top: 15px;
}

.campo-formulario {
    margin-bottom: 15px;
}

.campo-formulario input[type="text"],
.campo-formulario input[type="email"],
.campo-formulario select,
.campo-formulario button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.campo-formulario textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height: 150px;
}

.campo-formulario select {
    height: 40px; /* Ajusta la altura según sea necesario */
}

.campo-formulario button {
    display: block;
    font-size: 16px;
    background-color: #efcc03;
    border: 2px solid #efcc03;
    font-family: 'Raleway Medium', sans-serif;
    color: #fff;
    padding: 15px 0;
    text-decoration: none;
    border-radius: 40px;
    margin-top: 22px;
    width: 200px;
    margin-left: auto;
    /* margin-right: auto;*/
}

.campo-formulario button:hover {
    background-color: #ffffff;
    color: #efcc03;
    border: 2px solid #efcc03;
}

.cerrar {
    position: absolute;
    top: 0px;
    right: 15px;
    color: #aaa;
    font-size: 45px;
    font-weight: lighter;
    cursor: pointer;
}

.cerrar:hover,
.cerrar:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
