/* ====== RESET GENERAL ====== */
* {
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* ====== NAVBAR ====== */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: white;
    width: 100%;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    flex-grow: 1;
    justify-content: center;
    margin-left: auto;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 19px;
    font-weight: normal;
  }
  
  .cotizar-evento a {
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 0;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid black;
  }
  
  .cotizar-evento {
    margin-left: auto;
  }
  
  /* ====== DROPDOWN CONFIGURACIÓN FINAL ====== */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    margin-top: 3px;
    background: white;
    list-style: none;
    padding: 10px 15px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    width: 230px;
    border-radius: 12px;
    text-align: left;
    z-index: 10;
    display: none;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu.show {
    display: block;
  }
  
  .dropdown-menu li a.social-link,
  .dropdown-menu li a.cotizar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
    gap: 5px;
    padding: 10px 12px;
    border: 2px solid black;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: black;
    width: 100%;
    box-sizing: border-box;
  }
  
  .dropdown-menu li a img.icono-derecha {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  
  /* Centrado en MOBILE */
  @media (max-width: 768px) {
    .dropdown-menu {
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
    }
  }
  
  /* Prevenir desbordes en ESCRITORIO */
  @media (min-width: 769px) {
    .dropdown:last-child .dropdown-menu {
      right: 0;
      left: auto;
      transform: none;
      text-align: right;
    }
  }
  
  /* ====== SLOGAN ====== */
  .slogan {
    text-align: center;
    font-weight: bold;
    padding: 40px;
    font-size: 24px;
  }
  
  /* ====== SERVICIOS ====== */
  .services {
    display: flex;
    background: #f5f7fa;
    padding: 60px;
    gap: 40px;
  }
  
  .services-list {
    flex: 1;
    padding-left: 30px;
  }
  
  .services-list ul {
    list-style: none;
    padding: 0;
  }
  
  .services-list li {
    margin-bottom: 15px;
  }
  
  .services-list img {
    width: 20px;
    margin-right: 10px;
  }
  
  .video-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .video-placeholder {
    width: 100%;
    height: 150px;
    background: #ccc;
  }
  
  /* ====== ÍCONOS ====== */
  .icono-derecha {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    flex-shrink: 0;
  }
  
  /* ====== LOGO ====== */
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo img {
    height: 250px;
    object-fit: contain;
  }
  
  /* ====== TITULOS DE VIDEO ====== */
  .video-titulo {
    font-size: 10px;
    font-weight: bold;
    text-align: right;
    flex: 1;
  }
  
  /* ====== CARRUSEL DE REELS ====== */
  .video-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    margin: auto;
    padding-top: 10px;
    padding-right: 0;
  }
  
  .video-carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-right: 0;
  }
  
  .reel {
    flex: 0 0 100%;
    max-width: 100%;
    height: 600px;
    background: #ddd;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    scroll-snap-align: start;
    border-radius: 10px;
  }
  
  /* ====== INDICADORES DEL CARRUSEL ====== */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
  }
  
  .carousel-indicators .dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .carousel-indicators .dot.active {
    background-color: black;
  }
  
  /* ====== MOBILE STYLES ====== */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: center;
      padding: 10px 20px;
      width: 100%;
    }
  
    .nav-links {
      display: none;
      width: 100%;
      flex-direction: column;
      margin-top: 10px;
      padding: 0;
      align-items: center;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
    }
  
    .cotizar-evento {
      margin-top: 20px;
      width: 100%;
      text-align: center;
    }
  
    .hamburger-container {
      display: flex;
      justify-content: center;
      width: 100%;
      margin-top: 10px;
    }
  
    .slogan {
      padding: 20px 10px;
      font-size: 18px;
    }
  
    .services {
      flex-direction: column;
      padding: 30px 15px;
    }
  
    .services-list {
      margin-bottom: 20px;
    }
  
    .video-carousel-container {
      margin-top: 30px;
    }
  }
  