

@font-face {
  font-family: 'dimbo';
  src: url('../src/assets/fonts/DIMBO REGULAR.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Header general */
.header-container {
  background-color: #de0a17;
  height: 100px;
  margin-top: -15px;
  z-index: 3;
  position: relative;
  background-size: 200px 200px;
  background-position: right 28px top 10px;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;

  font-family: "dimbo", Arial, sans-serif;
}

/* Logo contenedor */
.logo {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

/* Imagen del logo */
.logo img {
  height: 6rem;
  width: auto;
  max-width: 100%;
  margin-top: 3.2rem; /* 🔽 Esto baja un poco la imagen */
}
/* Ola decorativa */
.wave-header {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
  line-height: 1;
  margin-top: -3px;
  transform: scaleY(-1);
  filter: drop-shadow(0px -15px 7px rgba(114, 56, 33, 0.22));
}

/* Header fijo */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
}

/* Evita que el contenido quede debajo del header */
body {
  padding-top: 100px;
}

/* 🔄 Media Queries para Responsividad */
@media (max-width: 768px) {
  .header-container {
    height: 80px;
    background-size: 150px 150px;
    background-position: right 10px top 5px;
  }

  .logo img {
    height: 4.5rem;
    margin-bottom: 22%;
  }

  body {
    padding-top: 85px;
  }
  .wave-header{
    margin-top:-1%;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 70px;
    background-size: 100px 100px;
    background-position: right 5px top 5px;
    padding: 0 0.5rem;
  }

  .logo img {
    height: 3.5rem;
  }

  body {
    padding-top: 75px;
  }
}
