:root {
  --primary: #FF6B6B;
  --secondary: #4ECDC4;
  --dark: #292F36;
  --light: #88bd88; /* Cambiado a un tono de celeste más oscuro */
  --accent: #FFE66D;
  --font: 'Poppins', sans-serif;
  --brand-text-font: 'Bagel Fat One', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background-color: #e6f7ff; /* Fondo celeste oscuro */
  line-height: 1.6;
  padding-top: 120px;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Eliminar viñetas de listas de beneficios */
.socios-benefits ul,
.socios-benefits ol,
.socios-benefits li,
.benefits-list,
.benefits-list ul,
.benefits-list ol,
.benefits-list li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  background-image: none !important;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  transition: all 0.3s ease;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1rem 0;
}


.logo {
  height: 100px;
  width: auto;
  transition: all 0.3s ease;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Menú */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.menu-icon {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--dark);
  position: relative;
  transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  transition: all 0.3s ease;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.menu-toggle.active .menu-icon {
  background-color: transparent;
}

.menu-toggle.active .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  gap: 10px;
  position: relative;
  z-index: 100;
  align-items: center;
}

/* Estilos específicos para el menú de usuario */
.user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.user-menu .user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* Asegurando que el enlace de Portal de Clientes se vea igual que los demás */
.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  left: 0;
  width: 100%;
}

/* Estilos para el menú de usuario */
.user-menu {
  position: relative;
}

.user-menu .user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.user-menu .user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;
  min-width: 200px;
  z-index: 1000;
}

.user-menu:hover .user-dropdown {
  display: block;
}

.user-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--dark-color);
  text-decoration: none;
  transition: background 0.3s ease;
}

.user-dropdown a:hover {
  background: var(--light);
}

/* Estilos para el botón de login */
.login-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background: #e6487b;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 100;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 0;
  width: 100%;
}

/* Estilos para móvil */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav-link::after {
    display: none;
  }
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 600px;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
  padding: 0 1rem;
  padding-top: 180px; /* Ajustado para el logo */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 0; 
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--brand-text-font);
}

/* Estilos para el nombre de la marca en el footer */
.main-footer h3 {
  font-family: var(--brand-text-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Estilos para el nombre de la marca en el menú */
.nav-menu .nav-link:has(span.brand-text) {
  font-family: var(--brand-text-font);
  font-size: 1.2rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.3s both;
  font-weight: 300;
}

/* Estilos para el título de las secciones */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--dark);
}

.section-title .brand-text {
  font-family: var(--brand-text-font);
}

.section-title span:not(.brand-text) {
  color: #2c3e50;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Botones */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta {
  background-color: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 230, 109, 0.4);
  animation: fadeInUp 1s ease 0.6s both;
  font-weight: 700;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 230, 109, 0.6);
}

.pulse {
  animation: pulse 2s infinite;
}

/* Secciones */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title span {
  color: var(--primary);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0077b6; /* Celeste oscuro */
  margin: 1rem auto;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Galería de sabores */
.galeria-sabores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.flavor-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.flavor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.flavor-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.flavor-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 2rem 1rem 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.flavor-card:hover .flavor-overlay {
  opacity: 1;
}

/* Galería de máquinas */
.galeria-maquinas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.machine-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.machine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.machine-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.machine-type {
  text-align: center;
  padding: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 3rem 0 2rem;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand, .footer-menu, .footer-contact, .footer-social {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

.footer-brand, .footer-menu, .footer-contact, .footer-social {
  text-align: left;
}

.footer-brand .footer-description {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-top: 0.5rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-menu h4, .footer-contact h4, .footer-social h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

.footer-menu ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
  color: #ffffff;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

.footer-links {
  margin: 1.5rem 0;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  background-color: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link i {
  font-size: 1.2rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-policies {
  margin-top: 1rem;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.footer-policies span {
  color: rgba(255, 255, 255, 0.5) !important;
}

.contact-email {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 230, 109, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 230, 109, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 230, 109, 0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .galeria-sabores,
  .galeria-maquinas {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    transition: left 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    margin: 0.5rem 0;
    padding: 0.75rem 1.5rem;
  }
  
  .galeria-sabores,
  .galeria-maquinas {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .logo {
    height: 100px;
    position: relative;
    left: auto;
    transform: none;
  }
  
  .hero {
    padding-top: 150px;
  }
}

@media (max-width: 480px) {
  .galeria-sabores,
  .galeria-maquinas {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero {
    min-height: 500px;
    padding-top: 120px;
  }
}
/* Estilos para Menú de Sabores */
.menu-categories {
  display: grid;
  gap: 3rem;
}

.category h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-items {
  display: grid;
  gap: 1.5rem;
}

.menu-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.price {
  color: var(--primary);
  font-weight: 700;
}

/* Estilos para Puntos de Venta */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Estilos para Formulario de Socios */
.hero-form {
  display: flex;
  align-items: center;
  min-height: 80vh;
  position: relative;
}

.form-container {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
}

.partner-form {
  display: grid;
  gap: 1.5rem;
}

.form-group input, 
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font);
}
/* Eliminar posibles logos duplicados */
.header-container > img,
.header-content > img:not(.logo),
.main-header > img {
  display: none !important;
}

/* Forzar solo un logo visible */
.logo-link {
  display: block !important;
  text-align: center;
  margin: 0 auto;
}

/* Ocultar logo antiguo si existe */
.logo-sobre-hero {
  display: none !important;
}

.menu-text {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 6px;
  background: #f4f4f4;
  border: 1px solid #ddd;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.menu-toggle:active .menu-text,
.menu-toggle:focus .menu-text {
  background: #e0e0e0;
  color: #1976d2;
  outline: none;
}

.socios-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.coquicool-brand {
  font-family: 'Ribeye Marrow', cursive;
  font-size: 2.5rem;
  color: #FF6B95; /* Color corporativo de CoquiCool */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Opcional: efecto 3D */
  letter-spacing: 1px; /* Ajusta según prefieras */
}