/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.light-bg {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #000;
  line-height: 1.6;
}

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

img, video {
  max-width: 100%;
  display: block;
}

/* ===== MENÚ HAMBURGUESA ===== */
.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
}

/* ===== MENÚ MOBILE ===== */
.offcanvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  color: #000;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 40px 30px;
}

.offcanvas-menu.active {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.close-btn, .lang-switch {
  font-size: 0.9rem;
  color: #999;
  cursor: pointer;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  margin-bottom: 15px;
}

.menu-list a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  display: block;
}

.menu-list a::after {
  content: '→';
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-list a:hover::after {
  opacity: 1;
}

/* ===== BLOG ===== */


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 60px auto 20px;
  text-align: center;
  color: #FFFFFF;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 60px;
}

.video-item {
  background: #0f0f0f;
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: translateY(-4px);
}

.video-header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.video-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #FFFFFF;
  margin: 0;
}

.video-container {
  position: relative;
}

video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: none;
}

/* Overlay con icono de play */
.video-overlay {
  position: relative;
  display: inline-block;
  width: 100%;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.play-icon {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
}

.video-overlay:hover .play-overlay {
  opacity: 1;
}

.video-date {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #777;
  background: #eee;
  padding: 6px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

/* Tablet */
@media (max-width: 991px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Móvil */
@media (max-width: 767px) {
  .blog-main {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .video-title {
    font-size: 1.6rem;
  }
}
/* ===== FOOTER ===== */
.seccion-footer {
  background: #000;
  color: #fff;
  padding: 60px 0 40px;
}

.footer-redes-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-redes-top a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-redes-top a:hover {
  color: #ccc;
}

.footer-divider {
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-contenido {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 30px 2rem;
}

.footer-columna {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.footer-email {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #ccc;
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin: 0;
  text-align: left;
  letter-spacing: -0.05em;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #ccc;
  text-decoration: underline;
}

.footer-redes-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-redes-bottom a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-redes-bottom a:hover {
  color: #ccc;
}

.footer-pie {
  text-align: center;
  padding: 15px 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #999;
}

/* Tablet */
@media (max-width: 991px) {
  .footer-contenido { grid-template-columns: 1fr; }
  .footer-redes-top { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-redes-bottom { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* Móvil */
@media (max-width: 767px) {
  .footer-redes-top { flex-direction: row; justify-content: space-around; }
  .footer-redes-bottom { flex-direction: row; justify-content: space-around; }
}

@media (max-width: 480px) {
  .menu-toggle {
    top: 15px;
    left: 15px;
    font-size: 1.3rem;
  }
}