@font-face {
  font-family: "Haverbroke";
  src: url(/haverbroke/Haverbrooke.woff) format("woff2"),
       url(/haverbroke/Haverbrooke.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
*{
    margin: 0;
}
body{
    font-family: "Haverbroke", sans-serif;
    letter-spacing: 2px;
}
.menu{
    height: 70px;
    width: 100vw ;
    display: flex;
    align-items: center ;
    justify-content: center;
    position: fixed;
    background: rgba(67, 26, 8, 0.9);
}
.menu .menu2{
    width: 500px;
    display: flex;
    justify-content: space-between;
}
.menu .menu2 a{
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 10px;
    letter-spacing: 2px ;
}
.menu .menu2 a:hover{
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}
.titulo{
    height: 180px;
    margin-left: 30px;
    width: 100;
    color: #370F09;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.titulo h3{
    margin-top: 5px;
    margin-left: 40px;
    margin-bottom: 6px;
}
.section5{
    height: 450px;
    width: 100;
    background-color: #ffffff;
    display: flex;
}
.section5 .izq5{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
}
.section5 .izq5 .centr5{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.formulario-container {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(180deg, #E18A6C 0%, #370F09 100%);
    border: solid 2px #370F09;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.formulario-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.formulario-grupo {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.formulario-grupo.full-width {
    width: 100%;
}
label {
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}
input[type="text"],
input[type="email"],
textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background-color: #FFE4D6;
    outline: none;
    box-sizing: border-box;  /* ← AGREGAR ESTO */
    width: 100%; 
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    background-color: #FFF;
}
textarea {
    resize: vertical;
    min-height: 120px;
    font-family: Arial, sans-serif;
}
.boton-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
button {
    background-color: #E18A6C;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
button:hover {
    background-color: #f59478;
    transform: scale(1.05);
}
.section5 .dcha5{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section5 .dcha5 .centr52{
    height: auto;
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #370F09;
}
.section5 .dcha5 .centr52 h2{
    font-size: 18px;
}
.section5 .dcha5 .centr52 .correo{
    height: 40px;
    width: 260px;
    background-color: #370F09;
    border: solid 2px #E18A6C;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content:space-around;
    color: white ;
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 80px;
}
.section5 .dcha5 .centr52 .correo p{
    margin-top: 4px;
  	font-size: 12px;
}
.section5 .dcha5 .centr52 .redes{
    width: 200px;
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}
.section5 .dcha5 .centr52 .redes .bt{
    height: 30px;
    width: 30px;
    background-color: #370F09;
    border: solid 2px #E18A6C;
    border-radius: 10px;
    padding: 5px 5px;
}
.footer{
    height: 150px;
    width: 100;
    background-color: #370F09;
    color: white;
    font-size: 13px;
    display: flex; /* Añade esto */
    justify-content: center; /* Añade esto */
    align-items: center; /* Añade esto */
}
.footer .cent{
    height: 100px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around ;
    align-items: center;
}
.footer .cent .reds{
    height: auto;
    width: 300px;
    display: flex;
    justify-content: space-around;
}

/* RESPONSIVE DESIGN */

@media (max-width: 1100px){
    .titulo h1{
        font-size: 25px;
    }
    .titulo img{
        width: 600px;
    }
}
@media (max-width: 1025px) {
    .section5 .izq5{
        width: 60%;
    }
}

@media (max-width: 950px){
    .section5 .dcha5 .centr52 h2{
        font-size: 17px;
    }
    .formulario-container {
        max-width: 350px;   /* antes 400px */
        padding: 24px;      /* antes 30px */
    }
    .formulario-row {
        gap: 12px;          /* antes 15px */
        margin-bottom: 18px;/* antes 20px */
    }   
    textarea {
        min-height: 100px;  /* antes 120px */
    }
    .boton-container {
        margin-top: 20px;   /* antes 25px */
    }
    button {
        padding: 11px 34px; /* antes 12px 40px */
    }
}

@media (max-width: 850px){
    .titulo h1{
        font-size: 21px;
    }
    .titulo h3{
        font-size: 16px;
    }
    .titulo img{
        width: 500px;
    }
}

@media(max-width: 780px){
    .menu .menu2 a{
        font-size: 13px;
    }
    .section5{
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .section5 .izq5{
        width: 100%;
        display: flex;
        align-items: center;
    }
    .section5 .dcha5{
        width: 100%;
        display: flex;
        flex-direction: row;
    }
    .section5 .dcha5 .centr52{
        margin-top: 40px;
        height: 230px;
    }
    .section5 .dcha5 .centr52 .correo{
        margin-bottom: 30px;
    }
    .titulo h3{
        margin-left: 15px;
    }
    .titulo{
        margin-bottom: 50px;
    }
}

@media (max-width: 650px){
    .titulo{
        text-align: center;
        margin-left: 0px;
    }
    .titulo h3{
        margin-left: 0px;
    }
    .titulo img {
        width: 85vw;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 600px){
.menu{
    display: flex;
    justify-content: flex-end;
}
.menu .menu2 {
    display: none;
}
.menu-toggle {
    display: block;
    position: absolute;
    margin-right: 20px;
}
.menu .menu2.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(67, 26, 8, 0.95);
    width: 200px;
    padding: 20px;
    border-radius: 0 0 0 10px;
    gap: 15px;
}
.menu .menu2.active a {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
}

@media (max-width: 550px){
    .formulario-row {
        flex-direction: column;  /* antes era flex (row por defecto) */
        gap: 0;                  /* antes 15px */
    }
    .formulario-container {
        max-width: 280px;        /* antes 400px */
        padding: 20px;           /* antes 30px */
    }
    .formulario-grupo {
        margin-bottom: 15px;     /* nuevo */
    }
    label {
        font-size: 13px;         /* antes 14px */
        margin-bottom: 6px;      /* antes 8px */
    }
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 10px;           /* antes 12px */
        font-size: 13px;         /* antes 14px */
    }
    textarea {
        min-height: 100px;       /* antes 120px */
    }
    .boton-container {
        margin-top: 15px;        /* antes 25px */
    }
    button {
        padding: 10px 35px;      /* antes 12px 40px */
        font-size: 13px;         /* antes 14px */
    }
    .titulo h1{
        font-size: 18px;
    }
    .titulo h3{
        font-size: 14px;
    }
}

@media (max-width: 500px){
    .section5 .dcha5 .centr52 h2{
        font-size: 15px;
    }
    .footer p{
        font-size: 12px;
    }
}

@media (max-width: 480px){
    .titulo h1{
        font-size: 16px;
    }
    .titulo h3{
        font-size: 13px;
    }
    .section5 .dcha5 .centr52 h2{
        font-size: 14px;
    }
}

@media (max-width: 400px){
    .titulo h1{
        font-size: 15px;
    }
    .titulo h3{
        font-size: 13px;
    }
    .section5 .dcha5 .centr52 h2{
        font-size: 13px;
    }
    .footer p{
        font-size: 10px;
    }
}



