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

body {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  background-color: #141414;
  color: #ffffff;
  background-image: url("../assets/fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

h1,
h2,
h3 {
  font-family: "Arial", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

footer {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  background-color: black;
  font-weight: 400;
  margin-top: 10%;
}

.btn-secondary,
.btn-primary {
  font-family: "Arial", sans-serif;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.btn-primary {
  background-color: #e50914;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  background-color: #e50914;
  font-size: 24px;
}

.btn-secondary:hover {
  opacity: 0.85;
}

.navbar {
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  z-index: 100;
}

.navbar h2 {
  color: #e50914;
  font-size: 250%;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px 5%;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 600px;
}

.hero h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.hero p {
  color: #b3b3b3;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 450px;
}

.hero .hero-form {
  display: flex;
  gap: 16px;
}

.hero .input-email {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 16px;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  outline: none;
  min-width: 280px;
}

.hero .input-email::placeholder {
  color: #b3b3b3;
}

.hero .input-email:focus {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid #b3b3b3;
}

.card1 {
  width: 300px;
  height: 450px;
  border: solid 1px;
  margin: auto;
  background-image: url("../assets/portada.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card1 .ver-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: 10px;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.card1 .ver-info p {
  background: red;
  text-align: center;
  cursor: pointer;
}

.card1 .ver-info span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: gold;
  margin-bottom: 5px;
}

.card1:hover .ver-info {
  opacity: 1;
  height: 130px;
}

.card2 {
  width: 300px;
  height: 450px;
  border: solid 1px;
  margin: auto;
  background-image: url("../assets/Torino.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card2 .ver-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: 10px;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.card2 .ver-info p {
  background: red;
  text-align: center;
  cursor: pointer;
}

.card2 .ver-info span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: gold;
  margin-bottom: 5px;
}

.card2:hover .ver-info {
  opacity: 1;
  height: 130px;
}

.card3 {
  width: 300px;
  height: 450px;
  border: solid 1px;
  margin: auto;
  background-image: url("../assets/Texas.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card3 .ver-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: 10px;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.card3 .ver-info p {
  background: red;
  text-align: center;
  cursor: pointer;
}

.card3 .ver-info span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: gold;
  margin-bottom: 5px;
}

.card3:hover .ver-info {
  opacity: 1;
  height: 130px;
}

.contenedor-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

/*# sourceMappingURL=main.css.map */
