@font-face {
    font-family: 'Channe';
    src: url('./fonts/Channe.otf');
}
@font-face {
    font-family: 'Madetommythin';
    src: url('./fonts/MADE\ Tommy\ Soft\ Thin\ PERSONAL\ USE.otf');
}
@font-face {
    font-family: 'Milyuna';
    src: url('./fonts/Milyuna-Regular.ttf');
}
@font-face {
    font-family: 'ArquitectaLigth';
    src: url('./fonts/ArquitectaLight.otf');
}
@font-face {
    font-family: 'MilonerRegular';
    src: url('./fonts/MilonerRegular-L3YgD.ttf');
}
@font-face {
    font-family: 'Tanseek';
    src: url('./fonts/Tanseek\ Modern\ Pro\ Arabic.ttf');
}
@font-face {
    font-family: 'Dream';
    src: url('./fonts/Dream\ Orphans.otf');
}
@font-face {
    font-family: 'Appleligth';
    src: url('./fonts/AppleGaramond-Light.ttf');
}
@font-face {
    font-family: 'Apple';
    src: url('./fonts/AppleGaramond.ttf');
}



 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff6ed;
 
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff6ed;
  z-index: 1000;
}

/* Usamos Grid para dividir en tres: izquierda, centro (logo), derecha */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 95%; /* Esto asegura que la parte de la izquierda y derecha esté alineada con la línea */
  margin: 0 auto; /* Centrado horizontalmente */
  padding: 30px 0; /* Ajusta el padding vertical */
  gap: 20px;
}

/* Línea pegada al header */
.header-line {
  width: 95%;
  height: 10px;
  background-color: #e46c98;
  position: relative;
  z-index: 999;
  margin: 0 auto; /* 🔥 Centrado horizontalmente */
}

/* Logo centrado */
.logo {
  display: flex;
  justify-content: center;
}
.logo img {
  height: 80px;
}

/* Menús de navegación */
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  text-transform: uppercase;
  width: 100%; /* Asegura que ocupe el 100% del contenedor disponible */
  font-family: 'Madetommythin';

}

nav a {
  text-decoration: none;
  color: black;
  font-size: 25px;
  font-weight: bold;
}

nav a:hover {
  color: #e46c98;
}

nav svg {
  cursor: pointer;
  height: 35px;
}
nav a:focus,
nav a:active {
  text-decoration: none;
  outline: none;
  color: #f7bfd8;
}

nav svg:hover {
  transform: scale(1.2);
  fill: #e46c98;
}

/* Icono de la cesta */
img[alt="cesta"] {
  height: 35px;
  cursor: pointer;
}

img[alt="cesta"]:hover {
  filter: invert(28%) sepia(93%) saturate(748%) hue-rotate(295deg);
}


.inicio {
  color: #e46c98;
}
.hablamos h1{
    font-size: 100px;
    font-family: 'Channe';
    text-transform: uppercase;
    text-align: center;
    margin-top: 200px;
}
/* Estilo mejorado del formulario */
.formulario {
    display: flex;
    justify-content: center;
    background-color: #f7ede2;
    border-radius: 20px;
    width: 600px;
    margin: 50px auto;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Estilo mejorado del formulario */
.formulario {
    display: flex;
    justify-content: center;
    background-color: #f7ede2;
    border-radius: 20px;
    width: 600px;
    margin: 50px auto;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form {
    width: 100%;
}

.formulario label {
    font-size: 25px;
    font-family: 'Milyuna';
    letter-spacing: 1.5px;
    font-weight: bold;
    color: black;
    display: block;
    margin-bottom: 8px;
}

.formulario input, .formulario select, .formulario textarea {
    width: 100%;
    padding: 10px;
    font-size: 25px;
    font-family: 'Appleligth';
    border: 1px solid #fdcee3;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
}

.formulario input:focus, .formulario select:focus, .formulario textarea:focus {
    border-color: #e46c98;
    outline: none;
    box-shadow: 0 0 5px rgba(166, 124, 82, 0.5);
}

.formulario textarea {
    resize: vertical;
    height: 100px;
}

.formulario button {
    background-color: #e46c98;
    color: #fff;
    font-size: 30px;
    font-family: 'Milyuna';
    text-transform: uppercase;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.formulario button:hover {
    background-color: #f19fc4;
}


/* Ajuste para los checkboxes */
.checkbox-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px; /* Espaciado entre opciones */
    padding-bottom: 25px;
}

.checkbox-group {
    display: flex;
    align-items: center; /* Alinea verticalmente checkbox y texto */
    gap: 10px; /* Espaciado entre checkbox y texto */
}

.checkbox-group input {
    width: 20px; /* Tamaño del checkbox */
    height: 20px;
    margin: 0; /* Elimina márgenes extra */
    cursor: pointer;
}

.checkbox-group label {
    font-size: 25px;
    font-family: 'Appleligth';
    font-weight: 100;
    color: black;
    cursor: pointer;
}



.formulario .checkbox-container .checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: center;
  
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .formulario {
        width: 90%;
        padding: 30px;
    }
}

.redes {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el texto y los iconos */
    text-align: center;
    justify-content: center;
    padding: 40px 20px; /* Espaciado para mejor apariencia */
    background-color: #fff6ed;
    height: 500px;
}

.redes h2 {
    font-size: 50px; /* Tamaño del texto */
    font-family: 'Channe';
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px; /* Espacio entre el texto y los iconos */
}

.redes .iconos {
    display: flex; /* Asegura que los iconos se coloquen en fila */
    justify-content: center; /* Centra los iconos horizontalmente */
    gap: 20px; /* Espacio entre los iconos */
    width: 100%; /* Ocupa todo el ancho del contenedor */
}

.redes svg {
    width: 80px;
    height: 80px;
    fill: #e46c98; /* Color de los iconos */
    transition: transform 0.3s ease, fill 0.3s ease;
    cursor: pointer;
}

.redes svg:hover {
    transform: scale(1.2); /* Efecto de zoom al pasar el mouse */
    fill: #f19fc4; /* Color del icono al pasar el mouse */
}

footer {
    background-color: #fdcee3;
    color: black;
    padding: 20px;
    font-family: Madetommythin;
    font-size: 20px;
    font-weight: bold;
    height: 100px;
    padding: 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal {
    display: flex;
    gap: 20px;
}

a {
    color: grey;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.marca {
    font-size: 20px;

}
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  font-family: 'Madetommythin';
  color: #e46c98;
}
.menu-movil {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff6ed;
  padding: 15px 20px;
  z-index: 1000;
  
}
.menu-movil a {
  font-weight: bold;
  color: black;
  text-decoration: none; /* Opcional: quita el subrayado */
  margin: 10px 0; /* Espacio entre enlaces */
}
.menu-movil a.inicio{
  color: #e46c98;
}
@media (max-width: 768px) {
  /* -------------------- HEADER -------------------- */
  .header-inner {
    grid-template-columns: auto auto auto;
    padding: 20px;
  }
   .menu-movil.show {
    display: flex;
    font-family: 'Madetommythin';
    text-transform: uppercase;
    font-weight: bold;
    color: black;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;

  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff6ed;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    display: none;
    z-index: 999;
    
  }

  nav.show {
    display: flex;
    
  }

  nav a {
    font-size: 18px;
    padding: 5px 0;
    text-align: center;
    text-decoration: none;
  }

  nav img[alt="cesta"] {
    height: 25px;
    align-self: center;
  }

  .logo img {
    height: 50px;
  }
  .inicio {
    color: #e46c98;
  }

  .hablamos h1 {
    font-size: 50px;
    margin-top: 100px;
    padding: 0 10px;
    text-align: center;
  }

  .formulario {
    width: 90%;
    padding: 25px;
    flex-direction: column;
    margin: 30px auto;
    border-radius: 15px;
  }

  .formulario label {
    font-size: 18px;
  }

  .formulario input,
  .formulario select,
  .formulario textarea {
    font-size: 18px;
    padding: 8px;
  }

  .formulario button {
    font-size: 20px;
    padding: 10px;
  }

  .checkbox-container {
    gap: 8px;
    padding-bottom: 20px;
  }

  .checkbox-group {
    flex-direction: row;
    gap: 8px;
  }

  .checkbox-group label {
    font-size: 18px;
  }

  .checkbox-group input {
    width: 18px;
    height: 18px;
  }

  .redes {
    padding: 30px 10px;
    height: auto;
  }

  .redes h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .redes .iconos {
    flex-wrap: wrap;
    gap: 15px;
  }

  .redes svg {
    width: 60px;
    height: 60px;
  }

  footer {
    font-size: 16px;
    padding: 20px;
    height: auto;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .legal {
    flex-direction: column;
    gap: 10px;
  }

  .marca {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1480px) {
  .header-inner {
    width: 95%;
    padding: 20px;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .logo img {
    height: 60px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  nav a {
    font-size: 20px;
  }

  nav svg {
    height: 28px;
  }

  img[alt="cesta"] {
    height: 28px;
  }
  .inicio {
    color: #e46c98;
  }

  .hablamos h1 {
    font-size: 70px;
    margin-top: 150px;
    text-align: center;
  }

  .formulario {
    width: 80%;
    max-width: 700px;
    padding: 35px;
    margin: 40px auto;
    border-radius: 20px;
  }

  .formulario label {
    font-size: 22px;
  }

  .formulario input,
  .formulario select,
  .formulario textarea {
    font-size: 22px;
    padding: 10px;
  }

  .formulario button {
    font-size: 25px;
    padding: 12px;
  }

  .checkbox-container {
    gap: 10px;
    padding-bottom: 25px;
  }

  .checkbox-group {
    flex-direction: row;
    gap: 10px;
  }

  .checkbox-group label {
    font-size: 20px;
  }

  .checkbox-group input {
    width: 20px;
    height: 20px;
  }

  .redes {
    padding: 40px 20px;
    height: auto;
  }

  .redes h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }

  .redes .iconos {
    gap: 25px;
    flex-wrap: wrap;
  }

  .redes svg {
    width: 70px;
    height: 70px;
  }

  footer {
    font-size: 18px;
    padding: 30px;
    height: auto;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .legal {
    gap: 15px;
  }

  .marca {
    font-size: 18px;
  }
}
@media (min-width: 800px) and (max-width: 1250px) {
  .header-inner {
    width: 95%;
    padding: 15px;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .logo img {
    height: 50px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a {
    font-size: 16px;
  }

  nav svg {
    height: 24px;
  }

  img[alt="cesta"] {
    height: 24px;
  }
  .inicio {
    color: #e46c98;
  }

  .hablamos h1 {
    font-size: 65px;
    margin-top: 120px;
    text-align: center;
  }

  .formulario {
    width: 85%;
    max-width: 650px;
    padding: 35px;
    margin: 40px auto;
    border-radius: 20px;
  }

  .formulario label {
    font-size: 22px;
  }

  .formulario input,
  .formulario select,
  .formulario textarea {
    font-size: 20px;
    padding: 10px;
  }

  .formulario button {
    font-size: 24px;
    padding: 10px;
  }

  .checkbox-container {
    gap: 10px;
    padding-bottom: 25px;
  }

  .checkbox-group {
    flex-direction: row;
    gap: 10px;
  }

  .checkbox-group label {
    font-size: 20px;
  }

  .checkbox-group input {
    width: 18px;
    height: 18px;
  }

  .redes {
    padding: 40px 20px;
    height: auto;
  }

  .redes h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .redes .iconos {
    gap: 20px;
    flex-wrap: wrap;
  }

  .redes svg {
    width: 65px;
    height: 65px;
  }

  footer {
    font-size: 18px;
    padding: 30px;
    height: auto;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .legal {
    gap: 15px;
  }

  .marca {
    font-size: 18px;
  }
}
@media (min-width: 775px) and (max-width: 1050px) {
  /* Ocultamos el menú de navegación */
  nav {
    display: none;
  }

  /* Mostramos el ícono de la hamburguesa */
  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: #e46c98; /* Cambia el color según tu preferencia */
  }

  /* Estilos para el contenedor del menú hamburguesa */
  .menu-movil {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff6ed;
    padding: 15px 20px;
    z-index: 1000;
  }

  /* Mostrar el menú cuando el icono hamburguesa se activa */
  .menu-movil.show {
    display: flex;
  }

  /* Estilos para los enlaces dentro del menú hamburguesa */
  .menu-movil a {
    font-weight: bold;
    color: black;
    text-decoration: none;
    margin: 10px 0;
    text-align: center;
    font-family: 'Madetommythin';
    text-transform: uppercase;
  }

  .menu-movil a.inicio {
    color: #e46c98;
  }

  /* Estilo para los enlaces cuando el menú hamburguesa está activo */
  nav a {
    font-size: 18px;
    padding: 5px 0;
    text-align: center;
    display: block;
  }

  nav svg {
    height: 24px;
  }

  img[alt="cesta"] {
    height: 24px;
  }
}

/* Desplegar el menú hamburguesa al hacer click */
.menu-toggle.active + .menu-movil {
  display: flex;
}
