/* Fondo transparente elegante */
.menu-transparente {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.menu-content {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logogocho img {
  height: 80px;
  margin-top: 25px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ffcc00;
}

.menu-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-icons img {
  height: 40px;
  width: 40px;
}


.whatsapp-container {
  position: relative;
  width: 40px; /* igual al ícono */
  height: 40px;
  display: inline-block;
}

.whatsapp-container a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.whatsapp-container img {
  width: 100%;
  height: 100%;
}

.whatsapp-text {
  position: absolute !important;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: rgba(255, 95, 42, 0.95);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1001;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin-left: -40px;    
}




.hamburger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .menu-transparente {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .menu-transparente.visible {
    transform: translateY(0);
  }
}


/* menu lateral */
.sidebar-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #11141b;
  color: white;
  z-index: 2000;
  transition: left 0.4s ease;
  padding: 20px;
  box-shadow: 2px 0 15px rgba(0,0,0,0.6);
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-sidebar {
  max-height: 50px;
}

.close-btn {
  background: transparent;
  color: white;
  font-size: 28px;
  border: none;
  cursor: pointer;
}

.sidebar-nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.sidebar-contact {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.6;
}

.sidebar-contact h5{
  color: white;
}

.sidebar-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.sidebar-social a {
  color: white;
  background: #2a2a2a;
  padding: 8px;
  border-radius: 50%;
  font-size: 16px;
  display: inline-block;
}

.sidebar-menu .info_list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.info_item {
  margin-bottom: 15px;
}

.info_item .icon i {
  font-size: 16px;
  color: #ff6600;
}

.sidebar-social ul {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.sidebar-social ul li a {
  color: white;
  font-size: 18px;
  background: #2a2a2a;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.sidebar-social ul li a:hover {
  background: #ff6600;
}


/* END menu lateral */























.premio-titulo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2.3rem;
  line-height: 1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 5;
  text-align: center;
  padding: 0 10px;
  width: 100%;
  max-width: 90%;
  font-family: 'Russo One', sans-serif;  
}

.galeria-premios {
  background-color: #000;
  padding: 0;
  display: flex;
  justify-content: center;
}

.galeria-container {
  position: relative;    
  width: 100%;
  max-width: 600px; /* límite en PC */
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4; /* mantiene proporción en PC */
}

.galeria-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}


.img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}


.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.slide {
  min-width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.slide.active {
  display: flex;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Eliminar controles */
.galeria-controles {
  display: none;
}

/* Responsive para celulares */
@media (max-width: 768px) {
  .galeria-container {
    max-width: 100%;
    aspect-ratio: auto;
  }
}









.tick{
    margin-top: 5px !important;
    color: #f6c500;
}

.formnew{
    font-size: 27px;
}