/* Merchandising links styles - Unified Button Design */
.merch-links-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  text-align: center;
}

.merch-buttons-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.merch-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background-color: var(--accent-pink);
  color: var(--text-primary);
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.merch-button:hover {
  background-color: var(--text-primary);
  color: var(--primary-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.merch-button:active {
  transform: translateY(0);
}

.merch-button svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.merch-button:hover svg {
  transform: scale(1.1);
}

/* Responsive buttons */
@media (max-width: 768px) {
  .merch-buttons-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .merch-button {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }
}

.merch-fixed-images {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: flex-start;
  align-items: center;
}

.merch-fixed {
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  object-fit: cover;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #1a1a1a;
  --secondary-bg: #2a2a2a;
  --accent-pink: #ff1493;
  --accent-green: #00d4aa;
  --accent-purple: #b19cd9;
  --accent-orange: #ff6b47;
  --accent-light: #f5f5f5;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border-color: #333333;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-bg);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  padding-left: 20px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Menu */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}

.hamburger-menu span {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 80px;
  right: -300px;
  width: 300px;
  height: calc(100vh - 80px);
  background-color: var(--secondary-bg);
  z-index: 999;
  transition: right 0.3s ease;
  border-left: 1px solid var(--border-color);
}

.nav-menu.active {
  right: 0;
}

.nav-content {
  padding: 40px 30px;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  margin-bottom: 20px;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--accent-pink);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-left: 20px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  margin-left: 20px;
}

.cta-link:hover {
  color: var(--accent-pink);
  border-bottom-color: var(--accent-pink);
}

.hero-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.social-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  white-space: nowrap;
  min-height: 44px;
}

.social-btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
  color: var(--text-primary);
  border: none;
  position: relative;
  overflow: hidden;
}

.social-btn.instagram::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-btn.book {
  background-color: var(--accent-pink);
  color: var(--text-primary);
  border: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.social-btn.instagram:hover::before {
  opacity: 1;
}

.social-btn.book:hover {
  background-color: var(--text-primary);
  color: var(--primary-bg);
}

/* Popular Sections */
.popular-sections {
  padding: 80px 0;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
}

.sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.section-card {
  position: relative;
  padding: 50px 40px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-card.merchandising {
  background-color: var(--accent-green);
  color: var(--primary-bg);
}

.section-card.comunicacion {
  background-color: var(--accent-purple);
  color: var(--primary-bg);
}

.section-card.produccion {
  background-color: var(--accent-orange);
  color: var(--primary-bg);
}

.section-card.arriendo {
  background-color: var(--accent-light);
  color: var(--primary-bg);
}

.card-icon {
  margin-bottom: 20px;
  padding-left: 40px;
}

.section-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  padding-left: 40px;
}

.card-arrow {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.card-arrow:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateX(3px);
}

/* Content Sections */
.content-section {
  padding: 0;
  border-bottom: 1px solid var(--border-color);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  margin: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.content-section.visible {
  padding: 80px 0;
  max-height: 5000px; /* Ajusta este valor según sea necesario */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block !important;
}

.content-section:nth-child(odd) {
  background-color: var(--secondary-bg);
}

/* Asegurarse de que las secciones se muestren correctamente */
.content-section.visible {
  display: block !important;
  height: auto !important;
  overflow: visible !important;
}

.section-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-content {
  max-width: none;
  width: 100%;
}

.section-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--secondary-bg);
}

.contact-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-email {
  font-size: 24px;
  color: var(--accent-pink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--text-primary);
}

.contact-card {
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 32px 24px;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 1.1rem;
}

.contact-link {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #0077b6;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background-color: var(--accent-pink);
  color: var(--text-primary);
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
  background-color: var(--text-primary);
  color: var(--primary-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-btn:active {
  transform: translateY(0);
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  background: var(--primary-bg);
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
}

.footer-text {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  pointer-events: all;
  transition: background-color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Modern Carousel Styles - Simplified Grid Display */
.merch-carousel,
.comunicacion-carousel,
.produccion-carousel,
.arriendo-carousel {
  position: relative;
  margin: 40px 0;
  border-radius: 20px;
  overflow: visible;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  padding: 30px;
  width: 100%;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px 0;
  width: 100%;
  max-width: none;
  overflow: visible;
  min-height: 240px;
  justify-items: center;
  align-items: start;
}

/* Show only first 5 images by default */
.carousel-track .carousel-img:nth-child(n+6) {
  display: none;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 180px;
  flex-shrink: 0;
}

.carousel-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.carousel-img:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: var(--accent-pink);
}

.carousel-img:hover::before {
  opacity: 1;
}

/* Carousel Controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 20, 147, 0.9);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
  z-index: 10;
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--accent-pink);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.5);
}

/* Specific carousel themes */
.merch-carousel {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%);
  border-color: rgba(0, 212, 170, 0.2);
}

.merch-carousel .carousel-img:hover {
  border-color: var(--accent-green);
}

.merch-carousel .carousel-prev,
.merch-carousel .carousel-next {
  background: rgba(0, 212, 170, 0.9);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.merch-carousel .carousel-prev:hover,
.merch-carousel .carousel-next:hover {
  background: var(--accent-green);
  box-shadow: 0 12px 35px rgba(0, 212, 170, 0.5);
}

.comunicacion-carousel {
  background: linear-gradient(135deg, rgba(177, 156, 217, 0.1) 0%, rgba(177, 156, 217, 0.05) 100%);
  border-color: rgba(177, 156, 217, 0.2);
}

.comunicacion-carousel .carousel-img:hover {
  border-color: var(--accent-purple);
}

.comunicacion-carousel .carousel-prev,
.comunicacion-carousel .carousel-next {
  background: rgba(177, 156, 217, 0.9);
  box-shadow: 0 8px 25px rgba(177, 156, 217, 0.3);
}

.comunicacion-carousel .carousel-prev:hover,
.comunicacion-carousel .carousel-next:hover {
  background: var(--accent-purple);
  box-shadow: 0 12px 35px rgba(177, 156, 217, 0.5);
}

.produccion-carousel {
  background: linear-gradient(135deg, rgba(255, 107, 71, 0.1) 0%, rgba(255, 107, 71, 0.05) 100%);
  border-color: rgba(255, 107, 71, 0.2);
}

.produccion-carousel .carousel-img:hover {
  border-color: var(--accent-orange);
}

.produccion-carousel .carousel-prev,
.produccion-carousel .carousel-next {
  background: rgba(255, 107, 71, 0.9);
  box-shadow: 0 8px 25px rgba(255, 107, 71, 0.3);
}

.produccion-carousel .carousel-prev:hover,
.produccion-carousel .carousel-next:hover {
  background: var(--accent-orange);
  box-shadow: 0 12px 35px rgba(255, 107, 71, 0.5);
}

.arriendo-carousel {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.1) 0%, rgba(245, 245, 245, 0.05) 100%);
  border-color: rgba(245, 245, 245, 0.2);
}

.arriendo-carousel .carousel-img:hover {
  border-color: var(--accent-light);
}

.arriendo-carousel .carousel-prev,
.arriendo-carousel .carousel-next {
  background: rgba(245, 245, 245, 0.9);
  color: var(--primary-bg);
  box-shadow: 0 8px 25px rgba(245, 245, 245, 0.3);
}

.arriendo-carousel .carousel-prev:hover,
.arriendo-carousel .carousel-next:hover {
  background: var(--accent-light);
  box-shadow: 0 12px 35px rgba(245, 245, 245, 0.5);
}

/* Enhanced Modern Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
  display: flex;
  opacity: 1;
  animation: lightboxFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: lightboxZoomIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: -80px;
  right: -30px;
  background: linear-gradient(135deg, var(--accent-pink), #ff0080);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 6px 20px rgba(255, 20, 147, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.1);
  font-weight: bold;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: linear-gradient(135deg, #ff0080, var(--accent-pink));
  transform: scale(1.1) rotate(90deg);
  box-shadow: 
    0 12px 35px rgba(255, 20, 147, 0.6),
    0 0 0 3px rgba(255, 255, 255, 0.2);
}

.lightbox-close:active {
  transform: scale(0.95) rotate(90deg);
}

/* Enhanced animations */
@keyframes lightboxFadeIn {
  from { 
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to { 
    opacity: 1;
    backdrop-filter: blur(20px);
  }
}

@keyframes lightboxZoomIn {
  from { 
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to { 
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }
  
  .lightbox-close {
    top: -60px;
    right: -15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .lightbox-image {
    border-radius: 10px;
  }
}

/* Smooth hover effect for lightbox content */
.lightbox-content:hover .lightbox-image {
  transform: scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { 
    opacity: 0;
    transform: scale(0.5);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive carousel */
@media (max-width: 1400px) {
  .carousel-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

@media (max-width: 1200px) {
  .carousel-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
  
  .carousel-img {
    height: 220px;
    max-width: 90%;
  }
  
  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  
  .merch-carousel,
  .comunicacion-carousel,
  .produccion-carousel,
  .arriendo-carousel {
    padding: 20px;
    margin: 30px 0;
  }
}

@media (max-width: 480px) {
  .carousel-track {
    grid-template-columns: 1fr;
    gap: 15px;
    justify-items: center;
  }
  
  .carousel-img {
    height: 200px;
    max-width: 95%;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-card,
.gallery-item {
  animation: fadeInUp 0.6s ease forwards;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
  outline: 2px solid var(--accent-pink);
  outline-offset: 2px;
}

/* ===== MOBILE RESPONSIVE IMPROVEMENTS ===== */

/* Header improvements for mobile */
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  
  .header-content {
    padding: 0 20px;
  }
  
  .logo {
    padding-left: 0;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .hamburger-menu {
    padding: 8px;
  }
  
  .hamburger-menu span {
    width: 22px;
  }
  
  .nav-menu {
    top: 70px;
    width: 280px;
    height: calc(100vh - 70px);
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 15px;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .nav-menu {
    width: 100%;
    right: -100%;
  }
  
  .nav-content {
    padding: 30px 20px;
  }
}

/* Hero section mobile improvements */
@media (max-width: 900px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 30px;
  }
  
  .hero-title {
    padding-left: 0;
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 20px;
  }
  
  .cta-link {
    margin-left: 0;
    justify-content: center;
  }
  
  .social-buttons {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 0 50px;
  }
  
  .hero-content {
    padding: 0 20px;
    gap: 30px;
  }
  
  .hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .social-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .social-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero-content {
    padding: 0 15px;
    gap: 25px;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .hero-description {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .social-btn {
    flex: 1;
    justify-content: center;
    min-width: 140px;
  }
}

/* Popular sections mobile improvements */
@media (max-width: 768px) {
  .popular-sections {
    padding: 60px 0;
  }
  
  .sections-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 0 20px;
  }
  
  .section-card {
    padding: 40px 30px;
    min-height: 180px;
  }
  
  .section-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .sections-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 15px;
  }
  
  .section-card {
    padding: 35px 25px;
    min-height: 160px;
  }
  
  .section-card h3 {
    font-size: 1.1rem;
  }
  
  .card-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Content sections mobile improvements */
@media (max-width: 768px) {
  .content-section {
    padding: 50px 20px;
  }
  
  .content-section .section-content {
    padding: 0;
  }
  
  .content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .content-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .content-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .content-section ul {
    padding-left: 20px;
  }
  
  .content-section li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 40px 15px;
  }
  
  .content-section h2 {
    font-size: 1.6rem;
  }
  
  .content-section h3 {
    font-size: 1.2rem;
  }
  
  .content-section p,
  .content-section li {
    font-size: 13px;
  }
}

/* Contact section mobile improvements */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }
  
  .contact-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .contact-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .contact-phones {
    flex-direction: column !important;
    gap: 8px !important;
  }
  
  .contact-phones a {
    font-size: 16px !important;
  }
  
  .contact-email {
    font-size: 18px !important;
  }
  
  .contact-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 15px;
  }
  
  .contact-content > div:last-child {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .contact-email {
    font-size: 16px !important;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Footer mobile improvements */
@media (max-width: 768px) {
  .footer {
    padding: 20px;
  }
  
  .footer-content {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center;
  }
  
  .footer-text {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 15px;
  }
  
  .footer-content img {
    height: 18px !important;
    margin-right: 0 !important;
    margin-bottom: 5px;
  }
  
  .footer-text {
    font-size: 12px !important;
  }
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
  button, 
  .merch-button, 
  .social-btn, 
  .contact-btn,
  .nav-links a {
    min-height: 44px;
    min-width: 44px;
  }
  
  .carousel-prev,
  .carousel-next {
    min-height: 44px;
    min-width: 44px;
  }
  
  .section-card {
    min-height: 44px;
  }
}

/* Better spacing for mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  /* Ensure text remains readable */
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
  }
}

section {
  margin-bottom: 60px;
}

@media (max-width: 1400px) {
  section {
    margin-bottom: 50px;
  }
}

@media (max-width: 1200px) {
  section {
    margin-bottom: 40px;
  }
}

@media (max-width: 900px) {
  section {
    margin-bottom: 32px;
  }
}

@media (max-width: 2560px) {
  section {
    margin-bottom: 70px;
  }
}

/* Ajuste responsivo para contenido desplegado en secciones populares */
@media (max-width: 900px) {
  .content-section.visible {
    padding: 32px 12px;
  }
  .content-section.visible .section-content h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .content-section.visible .section-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .content-section.visible .section-content p,
  .content-section.visible .section-content ul,
  .content-section.visible .section-content li {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }
  .content-section.visible .merch-carousel,
  .content-section.visible .comunicacion-carousel,
  .content-section.visible .produccion-carousel,
  .content-section.visible .arriendo-carousel {
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
  }
  .content-section.visible .carousel-track {
    grid-template-columns: 1fr;
    gap: 15px;
    justify-items: center;
  }
  .content-section.visible .carousel-img {
    height: 160px;
    max-width: 90%;
    border-radius: 8px;
  }
}
@media (max-width: 600px) {
  .content-section.visible {
    padding: 18px 4px;
  }
  .content-section.visible .section-content h2 {
    font-size: 1.08rem;
  }
  .content-section.visible .carousel-img {
    height: 140px;
    max-width: 95%;
  }
}

/* Brands Section Styles */
.brands-section {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 80px 0;
  margin: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brands-section .section-content {
  text-align: center;
}

.brands-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.brands-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Brands Carousel Styles */
.brands-carousel {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

.brands-carousel .carousel-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 20px 0;
  width: 100%;
  max-width: none;
  overflow: visible;
  min-height: 160px;
  justify-items: center;
  align-items: center;
}

.brands-carousel .carousel-track .carousel-img:nth-child(n+6) {
  display: none;
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  backdrop-filter: blur(5px);
  display: block;
  filter: grayscale(0%) brightness(1);
}

.brand-logo:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 15px 35px rgba(255, 20, 147, 0.2);
  border-color: var(--accent-pink);
  filter: grayscale(0%) brightness(1.1);
  background: rgba(255, 255, 255, 0.15);
}

/* Brands Carousel Controls */
.brands-carousel .carousel-prev,
.brands-carousel .carousel-next {
  background: rgba(245, 245, 245, 0.15);
  box-shadow: 0 8px 25px rgba(245, 245, 245, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brands-carousel .carousel-prev:hover,
.brands-carousel .carousel-next:hover {
  background: var(--accent-pink);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.3);
  border-color: var(--accent-pink);
}

/* Responsive Brands Section */
@media (max-width: 1200px) {
  .brands-section {
    padding: 60px 0;
    margin: 60px 0;
  }
  
  .brands-carousel .carousel-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .brand-logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 900px) {
  .brands-section {
    padding: 40px 0;
    margin: 40px 0;
  }
  
  .brands-carousel {
    padding: 25px;
    margin: 30px 0;
  }
  
  .brands-carousel .carousel-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-height: 120px;
  }
  
  .brand-logo {
    width: 80px;
    height: 80px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .brands-carousel {
    padding: 20px;
  }
  
  .brands-carousel .carousel-prev,
  .brands-carousel .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .brands-carousel .carousel-prev { left: 10px; }
  .brands-carousel .carousel-next { right: 10px; }
}

@media (max-width: 600px) {
  .brands-carousel .carousel-track {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 120px;
    justify-items: center;
  }
  
  .brand-logo {
    width: 100px;
    height: 100px;
    padding: 12px;
  }
}

@media (max-width: 1500px) {
  .content-section.visible {
    padding-left: 40px;
    padding-right: 40px;
  }
}