@charset "UTF-8";
/* Header */
header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.4rem;
  background: white;
  height: 130px;
}
header .imgnav {
  width: 200px;
  justify-self: start;
  align-self: start;
}
header nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 1rem;
  padding: 0;
}
header nav ul li a {
  text-decoration: none;
  justify-content: center;
  color: orange;
  font-family: "Font Awesome 5 Free";
  font-size: 1.5rem;
  transition: color 0.3s;
}
header nav ul li a:hover {
  color: rgb(173, 165, 165);
}

/* Fondo fijo del sitio */
.contenedor1 {
  font-family: "Font Awesome 5 Free";
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../medios/mesa-de-trabajo1.png") no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

/* Hero */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: -60px; /* para pegarlo al header */
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* Caja con efecto vidrio y gif de fondo */
.overlay {
  position: relative;
  max-width: 1000px;
  width: 120%;
  padding: 3rem 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgb(74, 69, 69);
}

/* Fondo gif dentro de la caja */
.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../medios/gif2.gif") center center/cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}

/* Todo el contenido arriba del gif */
.overlay * {
  position: relative;
  z-index: 1;
}

.overlay h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Botón WhatsApp */
.cta-button.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.cta-button.whatsapp-button:hover {
  background-color: #1ebe5b;
}

.cta-button.whatsapp-button img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* -------------------------------------------- */
/* SECCIÓN BENEFICIOS */
.benefits {
  padding: 4rem 2rem;
  text-align: center;
}

.benefits .overlay {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #302f2f;
}

.benefit-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Tarjetas de beneficio con efecto vidrio */
.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.benefit-item .text h3 {
  font-size: 1.25rem;
  color: #3b3939;
  margin-bottom: 0.5rem;
  text-align: center;
}

.benefit-item .text p {
  font-size: 1rem;
  color: #302f2f;
  text-align: center;
}

/* Responsivo */
@media (max-width: 900px) {
  .benefit-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .benefit-container {
    grid-template-columns: 1fr;
  }
}
/* -------------------------------------------- */
/* TARJETAS */
.tarjetas {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  width: 340px;
  min-height: 420px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(54, 53, 53, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(12, 12, 12, 0.1);
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.card-img-overlay {
  padding: 15px;
  color: rgb(251, 248, 248);
  flex-grow: 1;
  text-align: center;
  background: rgba(39, 39, 38, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card:hover {
  transform: scale(1.05);
  background: rgba(48, 47, 47, 0.2);
}

.card-title {
  font-family: "Georgia", serif;
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fdfcfc;
}

.card-text {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #f8f8f8;
}

.card-items {
  font-family: "Georgia", serif;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.card-items li {
  padding: 9px;
  border: 1px solid #fac852;
  background: rgba(127, 125, 125, 0.2);
  transition: background 0.3s ease-in-out;
  text-align: center;
  color: white;
}

.card-items li:hover {
  background: #414040;
}

.card:hover .card-items {
  opacity: 0.8;
  max-height: 150px;
}

/* Footer */
footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: white;
}
footer .social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
footer .social a img {
  width: 30px;
  transition: transform 0.3s ease-in-out;
}
footer .social a img:hover {
  transform: scale(1.2);
}/*# sourceMappingURL=estilos.css.map */