* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  font-weight: 400;
  background: #fff;
  color: #222;
}

nav h1 {
  font-family: "Merriweather", sans-serif;
  color: white;
  font-weight: 900;
  font-size: 56px;
  text-align: center;
}

h2 {
  font-family: "Merriweather", "Inter";
  color: #222;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

h4 {
  color: #555;
  text-align: center;
}

.titulo-principal {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-align: center;
  color: #5a0005;
}

#titulo-principal {
  font-family: "Inter", sans-serif;
  color: white;
}

.titulo-secundario {
  font-weight: 700;
  text-align: center;
  color: grey;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #000000;
  padding: 20px 1rem;
  gap: 15px;
}

.logo {
  width: 98px;
  height: auto;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

ul li a {
  text-decoration: none;
  color: grey;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease;
}

a {
  text-decoration: none;
}

ul li a:hover {
  color: #360003;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  gap: 20px;
  padding: 20px;
  color: white;
  z-index: 1;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(20%);
}

.horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

button {
  background-color: #5a0005;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

button a {
  color: white;
}

button:hover {
  background-color: #360003;
}

.noticia {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #222;
  min-height: 75vh;
}

.noticia-completa {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.noticia img {
  width: 30rem;
  max-width: 50%;
  border-radius: 25px;
}

.entradilla {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  text-align: justify;
  color: black;
  background-color: white;
  padding: 40px;
  border-radius: 25px;
  font-size: 20px;
  line-height: 1.5;
  gap: 20px;
  max-width: 50%;
  min-height: 480px;
}

#opiniones {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 20px;
}

.opiniones {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.opiniones-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

img {
  border-radius: 25px;
  max-width: 100%;
  height: auto;
}

.organizado ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 50px;
}

.carta-body {
  background-color: #222;
}

.titulo-carta {
  color: white;
  font-weight: 700;
  text-align: center;
  background-color: #5a0005;
  margin: 25px 325px 25px 325px;
  padding: 20px;
  border-radius: 25px;
}

#primer-titulo {
  margin-top: 70px;
}

.carta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 50px;
}

.menu-item {
  display: flex;
  flex-direction: row;
  background-color: white;
  width: 600px;
  height: 250px;
  border-radius: 25px;
  transition: transform 0.2s;
}

.menu-item:hover {
  transform: translateY(-8px) scale(1.03);
}

.menu-item img {
  width: 250px;
  height: 250px;
  border-radius: 25px 0 0 25px;
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 350px;
  padding: 20px;
  gap: 10px;
}

.contacto-formulario {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding: 20px;
}

.formulario {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  background-color: white;
  padding: 30px;
  border-radius: 25px;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 100px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: grey;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

input[type="checkbox"] {
  width: auto;
}

button[type="submit"] {
  background-color: #5a0005;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #360003;
}

form {
  display: flex;
  flex-direction: column;
}

footer {
  background-color: #000000;
  display: flex;
  color: white;
  padding: 60px;
}

.footer-seccion {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-seccion a {
  color: white;
}

.footer-seccion a:hover {
  color: white;
}

select {
  padding: 5px;
  border: none;
  border-radius: 25px;
  color: grey;
  background-color: transparent;
  font-size: 16px;
  transition: color 0.2s ease;
  border-color: #360003;
}

select:hover {
  color: #360003;
}

.entradilla ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  color: black;
  font-size: 16px;
}

.entradilla a {
  color: white;
  font-size: 16px;
}

iframe {
  border-radius: 20px;
  border: none;
  min-height: 495px;
}

#no-boton {
  color: black;
}

.noticia-contacto {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.entradilla-noticia-contacto {
  display: flex;
  flex-direction: column;
  background-color: white;
  max-width: 50%;
  gap: 25px;
  border-radius: 25px;
  padding: 50px;
  color: #222;
}
