@font-face {
  font-family: 'Ubuntu';
  src: url('../fuentes/ubunturegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fuentes/ubuntubold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fuentes/ubuntuitalic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fuentes/ubuntubolditalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fuentes/ubuntulight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fuentes/ubuntulightitalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fuentes/ubuntumedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fuentes/ubuntumediumitalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.landing {
  background-color: #E45336;
  background-image: url('../assets/landing/fondo1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Márgenes pronunciados, solo ajustar el logo */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 120px;
  flex: 1;
  position: relative;
  min-height: 100vh;
  max-width: 600px;
  margin: 0 auto;
}

.logo-container {
  text-align: center;
  margin-top: 12vh;
  margin-bottom: 20px;
  width: 100%;
  max-width: 160px;
}

.logo-container img {
  margin-top: 70px;
  margin-bottom: 50px;
  max-width: 100%;
  height: auto;
}

.title-container {
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}

.title-container img {
  max-width: 100%;
  height: auto;
}

/* Ancho consistente para todos los elementos de texto */
.description {
  text-align: left;
  color: white;
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
  font-size: 2rem;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.sub-description {
  text-align: left;
  color: white;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
  font-size: 1.8rem;
  line-height: 0.9;
  width: 100%;
  max-width: 100%;
}

.button-container {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
}

.btn-ingresar {
  background-color: white;
  color: #E45336;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  font-family: 'Ubuntu', sans-serif;
  text-decoration: none;
  display: inline-block;
}

/* Los estilos del footer han sido movido a footer.js */

/* Background pattern with food icons */
.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  background-size: cover;
}

main {
  flex: 1;
}

/* Estilos para la sección hero */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  margin-top: -50px;
  padding-top: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Imagen de fondo */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

/* Contenedor para el logo y el texto */
.content-container {
  position: relative;
  margin-left: 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: auto;
}

/* Estilos para el logo */
.logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

/* Estilos para el tagline */
.tagline {
  font-family: 'Ubuntu', sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  color: white;
  line-height: 1.2;
  
}

/* Text section styles - Mobile First */
.text-section {
  margin: 40px 20px 0;
  max-width: 100%;
  padding: 0 10px;
}

.text-section p {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  line-height: 1.3;
  color: #333;
  margin-bottom: 20px;
}

/* Primer párrafo más grande */
.text-section p:first-child {
  font-size: 1.4rem;
}

/* Segundo párrafo más pequeño */
.text-section p:not(:first-child) {
  font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 15px 80px;
    max-width: 100%;
  }

  .logo-container {
    max-width: 140px;
    margin-top: 10vh;
  }

  .description {
    font-size: 1.2rem;
  }

  .sub-description {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .btn-ingresar {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 15px 60px;
  }

  .logo-container {
    max-width: 120px;
    margin-top: 8vh;
  }
}

.negrita {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.negrita-italic {
    font-weight: bold;
    font-style: italic;
}