* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.header {
  width: 100%;
  height: auto;
  background-color: #ffe262;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 10px 5%;
}

.redes {
  display: flex;
  flex-wrap: wrap;
}

.redes li {
  list-style: none;
  margin: 5px;
}

.redes li a img {
  width: 36px;
  height: 36px;
  filter: invert(100%);
}

/* MENU */

.menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
  padding: 20px 0;
  border-bottom: 3px solid #ffe262;
}

.izquierdo {
  flex: 1 1 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.izquierdo_imagen {
  max-height: 300px;
  width: auto;
}

.derecho {
  flex: 2 1 300px;
  padding: 10px;
}

.derecho_imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.derecho_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.nav {
  width: 100%;
}

.menu2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 18px;
  gap: 15px;
  padding: 0;
}

.menu2 li {
  list-style: none;
  margin: 8px;
  font-weight: 500;
}

.menu2 li a {
  color: black;
  text-decoration: none;
}

.menu2 li:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
  color: #ffe262;
}

.boton {
  border: none;
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50px;
  transition: transform 0.3s ease-in-out;
}

.boton:hover {
  background-color: #ffee00;
}

.boton:active {
  transform: scale(0.9);
}

.primary {
  background-image: linear-gradient(to right, #f7e869ea, #ffc933f5);
}

/* RESPONSIVE RULES */

@media (max-width: 768px) {
  .menu2 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .menu2 li:not(:last-child)::after {
    content: "";
  }

  .boton {
    font-size: 16px;
    padding: 10px 16px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
  }

  .header {
    justify-content: center;
    padding: 10px;
  }

  .derecho_menu {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .redes li a img {
    width: 30px;
    height: 30px;
  }

  .menu2 {
    font-size: 16px;
  }

  .boton {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* Centro de video*/
.central {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
/*PRUEBA DE VIDEO*/
.container {
  width: 92%;
  max-width: 970px;
  text-align: center;
  padding: 40px 20px;
}

/* Tipografía con personalidad */
.video-call {
  font-size: 1.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ecae06;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.video-call::after {
  content: "";
  position: absolute;
  width: 45%;
  height: 3px;
  background: #ffee89;
  bottom: -8px;
  left: 30%;

  opacity: 0.5;
}

/* Contenedor de video con detalles orgánicos */
.video-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #f0f0f0;
  margin: 0 auto 40px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}
.video-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.video {
  width: 90%;
  border-radius: 15px;
  margin: 25px 0 0 0;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffe262;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 16px solid white;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.play-icon:hover {
  background: #cc8602;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Logo con detalle sutil */
.logo {
  font-size: 3.8rem;
  font-weight: 350;
  letter-spacing: -1px;
  margin: 20px 0;
  color: #444;
  position: relative;
  display: inline-block;
}

.logo::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 3px;
  background: #ffe262;
  bottom: -10px;
  left: calc(50% - 15px);
  opacity: 0.7;
}

/* Enlace con animación orgánica */
.social {
  font-size: 1.2rem;
  color: #888;
  margin-top: 40px;
  margin-bottom: 10px;
}

.social a {
  color: #777;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.social a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: #fdc812;
  transition: width 0.3s ease-out;
}

.social a:hover {
  color: #fdc812;
}

.social a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
  .logo {
    font-size: 2.2rem;
  }
  .video-call {
    font-size: 0.9rem;
  }
}
.follow_img {
  margin: 10px 0 0 0;
}
