@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Cambiar a la fuente deseada para encabezados */
}
p{
    font-family: 'Open Sans', sans-serif;
}
.header{
    width: 100%;
    height: 40vh;
    background-color: #000000;
    position: relative;
    border-bottom-left-radius: 12vh;
    border-bottom-right-radius: 12vh;
}

.header_title{
    color: #FFFFFF;
    
    font-size: 2em;
    position: absolute;
    left: 2rem;
    top: 2rem;
}

.container_nav{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: calc(100% - 20px);
    top: -90px;
}

.list {
    list-style: none;
    display: flex;
    gap: 2em;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    min-height: 2rem;
    margin-right: 2rem;
    margin-top: -9rem; 
}

.list li{
    display: flex;
    align-items: flex-start;
    margin-top: 0;
}

.list li a{
    color: rgb(184, 184, 184);
    text-decoration: none;
    font-size: 1.2em;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.3s ease-in-out;
}

.list li a:hover{
    color: white;
}

.list button{
    background-color: #FF0000;
    color: white;
    font-weight: 500;
    font-size: 14pt;
    text-align: center;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    margin-left: auto;
    margin-top: -5px;
}

.list button:hover{
    background-color: #FF0000; 
    color: #FFFFFF; 
    box-shadow: 0 4px 8px rgba(184, 134, 11, 0.5); 
    cursor: pointer;
}


.header_name {
    position: relative;
    top: -10rem;
    width: auto;
    height: auto;
    margin-left: 50rem;
}

.header_name h2{
    font-size: 3em;
    font-weight: 100;
    color: white;
}

.header_name p{
    font-size: 1.3em;
    font-weight: 95;
    color: white;
    margin-left: 3rem;
    
}

/*Formulario*/
.contact-form-section{
    background-color: whitesmoke;
    padding: 40px 20px;
    margin-top: 20px;
}

.container{
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

.input-group{
    margin-bottom: 20px;
}

label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    height: 150px;
    resize: vertical;
}

#subject {
    height: 45px;
}

button[type="submit"] {
    background-color: #FF0000;
    color: white;
    font-weight: 500;
    font-size: 14pt;
    text-align: center;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #FF0000; 
    color: #FFFFFF; 
    box-shadow: 0 4px 8px rgba(184, 134, 11, 0.5); 
    cursor: pointer;
}

.header2 {
    width: 100%;
    height: 20vh;
    background-color: #000000;
    position: relative;
    border-top-left-radius: 12vh; 
    border-top-right-radius: 12vh; 
}

.header2 p {
    text-align: center;
    margin: 0; 
    font-size: 14px;
    color: white; 
}

.container{
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contact-info{
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1{
    color: #333;
    margin-bottom: 20px;
}

.contact-us{
    color: #ff6b6b;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

p {
    color: #666;
    line-height: 1.6;
}

.address, .phone, .email {
    margin-top: 20px;
}

form {
    display: grid;
    gap: 10px;
}

input, textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button{
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button:hover{
    background-color: #ff5252;
}