@import url('../CSS/header.css');
@import url('../CSS/footer.css');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Asenine";
    src: url("../tipografía/ASENINE.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }

/* Estilos generales */
body {
    font-family: "Asenine" , Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Contenido Principal */
main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.principal {
    width: 100%;
    font-size: 30px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.titulo-contacto {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    background-color: #ba007c;
    background: linear-gradient(90deg, #ba007c, #ff1493);
    border-radius: 5px;
}

/*Contenido Principal*/
.formulario-contacto {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.formulario-contacto label {
    font-size: 1.1em;
    color: #333;
    padding: 10px
}

.formulario-contacto input:not(:last-child) {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #000;
    border-radius: 5px;
    width: 100%;
}


.formulario-contacto textarea {
    padding: 10px;
    font-size: 1.2em;
    border: 1px solid #000;
    border-radius: 5px;
    width: 100%;
    resize: none;
}


.formulario-contacto button {
    padding: 10px 20px;
    font-size: 1.1em;
    background-color: #009bdb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.formulario-contacto button:hover {
    background-color: #0056b3;
}


/*JavaScript mensaje*/
.mensaje-confirmacion {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ba007c;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    z-index: 1000;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 5px;
}

.mensaje-confirmacion button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ba007c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.mensaje-confirmacion button:hover {
    background-color: #009bdb;
}


/* Responsive */
@media (max-width: 768px) {
    /*Menu*/
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        border-bottom: 1px solid #fff;
        border-right: none;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }

    /*Main*/
    main {
        flex-direction: column;
        align-items: center;
    }

    .principal {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Pie de página */
    footer {
        flex-direction: column;
        justify-content: center; 
    }

    .redes-sociales {
        margin-top: 10px;
    }
}

