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

:root {
  --primary-color: #87ceeb;
  --secondary-color: #ffd700;
  --accent-color: #ffb6c1;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

/* Delivery Banner */
.delivery-banner {
  background: var(--gradient);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.banner-content {
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  font-weight: bold;
  text-align: center;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Navigation - Mejorada para móvil */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-img:hover {
  transform: scale(1.1) rotate(5deg);
}

.nav-logo h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section - Optimizado para móvil */
.hero.carousel-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(255, 215, 0, 0.1), rgba(255, 182, 193, 0.1));
}

.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding: 20px;
  max-width: 800px;
  width: 100%;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.2;
  font-weight: bold;
}

.slide-content p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  min-width: 150px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 10;
  font-size: 2rem;
  border-radius: 5px;
  transition: background 0.3s;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
}

.feature i {
  font-size: 1.5rem;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.05), rgba(255, 215, 0, 0.05), rgba(255, 182, 193, 0.05));
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
}

/* Products Section */
.products {
  padding: 100px 0;
  background: var(--white);
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.category {
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--primary-color);
}

.category.active,
.category:hover {
  background: var(--primary-color);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.product-card p {
  color: var(--text-light);
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.05), rgba(255, 215, 0, 0.05), rgba(255, 182, 193, 0.05));
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-category {
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--primary-color);
  font-weight: 500;
}

.gallery-category.active,
.gallery-category:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
}

.gallery-modal-content {
  position: relative;
  margin: auto;
  padding: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
}

.gallery-modal img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: var(--text-dark);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2001;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-close:hover {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 1);
}

.gallery-modal-info {
  text-align: center;
  color: var(--text-dark);
  margin-top: 15px;
  padding: 10px;
}

.gallery-modal-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.gallery-modal-info p {
  font-size: 1rem;
  color: var(--text-light);
}

/* Sublimación Section */
.sublimacion {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(255, 215, 0, 0.1), rgba(255, 182, 193, 0.1));
}

.sublimacion h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sublimacion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sublimacion-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.sublimacion-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.sublimacion-services {
  list-style: none;
  margin-bottom: 30px;
}

.sublimacion-services li {
  padding: 10px 0;
  color: var(--text-dark);
}

.sublimacion-services i {
  color: var(--primary-color);
  margin-right: 10px;
}

.sublimacion-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.sublimacion-image {
  text-align: center;
  color: var(--accent-color);
  opacity: 0.7;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary-color);
  width: 50px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
}

.contact-map {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 50px;
}

.contact-map h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-description {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(255, 215, 0, 0.1), rgba(255, 182, 193, 0.1));
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  padding: 5px 0;
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
  color: #ccc;
}

/* Social Media Fixed Icons */
.social-fixed {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon.phone {
  background: var(--primary-color);
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.email {
  background: var(--accent-color);
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE DESIGN - OPTIMIZADO PARA MÓVILES */

/* Tablets */
@media (max-width: 1024px) {
  .hero.carousel-container {
    height: 80vh;
    min-height: 500px;
  }

  .slide-content h1 {
    font-size: 3rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

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

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

/* Móviles - OPTIMIZACIÓN PRINCIPAL */
@media (max-width: 768px) {
  /* Navegación móvil mejorada */
  .hamburger {
    display: flex;
  }

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

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

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

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

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-link {
    padding: 15px 0;
    font-size: 1.1rem;
    display: block;
  }

  /* Logo optimizado para móvil */
  .nav-logo {
    gap: 10px;
  }

  .logo-img {
    height: 50px;
  }

  .nav-logo h2 {
    font-size: 1rem;
  }

  /* Hero Section - OPTIMIZACIÓN PRINCIPAL PARA MÓVIL */
  .hero.carousel-container {
    height: 100vh;
    min-height: 600px;
  }

  .slide-content {
    padding: 30px 20px;
    max-width: 100%;
  }

  .slide-content h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  }

  .slide-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .btn {
    padding: 15px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
    min-height: 50px;
  }

  /* Controles del carrusel optimizados para móvil */
  .carousel-nav {
    padding: 12px 16px;
    font-size: 1.5rem;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }

  .carousel-dots {
    bottom: 20px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  /* Overlay más oscuro para mejor legibilidad en móvil */
  .slide-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  /* Secciones generales */
  .container {
    padding: 0 15px;
  }

  .services,
  .products,
  .gallery,
  .sublimacion,
  .contact,
  .about {
    padding: 60px 0;
  }

  .services h2,
  .products h2,
  .gallery h2,
  .sublimacion h2,
  .contact h2,
  .about h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  /* Features mejoradas para móvil */
  .features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .feature {
    justify-content: center;
    text-align: center;
  }

  /* Services grid optimizada */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card {
    padding: 30px 20px;
  }

  /* Products optimizados */
  .product-categories {
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
  }

  .category {
    padding: 10px 15px;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  /* Gallery optimizada para móvil */
  .gallery-categories {
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
  }

  .gallery-category {
    padding: 8px 12px;
    font-size: 0.85rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .gallery-item img {
    height: 220px;
  }

  .gallery-modal-content {
    width: 95%;
    max-width: 400px;
    padding: 15px;
  }

  .gallery-modal img {
    max-height: 300px;
  }

  .gallery-close {
    font-size: 25px;
    width: 35px;
    height: 35px;
  }

  /* Sublimación optimizada */
  .sublimacion-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .sublimacion-info h3 {
    font-size: 1.8rem;
  }

  .sublimacion-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Contact optimizado */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-item {
    gap: 15px;
  }

  .contact-item i {
    font-size: 1.8rem;
    width: 40px;
  }

  .map-container iframe {
    height: 300px;
  }

  /* Social icons reposicionados para móvil */
  .social-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    transform: none;
    flex-direction: row;
    gap: 10px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    min-height: 44px;
    min-width: 44px;
  }

  /* Banner optimizado */
  .banner-content {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  /* Footer optimizado */
  .footer {
    padding: 40px 0 15px;
  }

  .footer-content {
    gap: 30px;
  }
}

/* Móviles pequeños - OPTIMIZACIÓN ADICIONAL */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .nav-logo h2 {
    font-size: 0.9rem;
  }

  .logo-img {
    height: 40px;
  }

  /* Hero section para móviles muy pequeños */
  .hero.carousel-container {
    height: 100vh;
    min-height: 500px;
  }

  .slide-content {
    padding: 20px 15px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .slide-content p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-height: 48px;
  }

  .carousel-nav {
    padding: 10px 12px;
    font-size: 1.2rem;
  }

  .carousel-nav.prev {
    left: 5px;
  }

  .carousel-nav.next {
    right: 5px;
  }

  .carousel-dots {
    bottom: 15px;
  }

  /* Secciones más compactas */
  .services,
  .products,
  .gallery,
  .sublimacion,
  .contact,
  .about {
    padding: 40px 0;
  }

  .services h2,
  .products h2,
  .gallery h2,
  .sublimacion h2,
  .contact h2,
  .about h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-categories {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .gallery-category {
    padding: 8px 15px;
    font-size: 0.8rem;
    width: 80%;
    max-width: 200px;
  }

  .gallery-modal-content {
    width: 98%;
    max-width: 350px;
    padding: 10px;
  }

  .gallery-modal img {
    max-height: 250px;
  }

  .gallery-close {
    font-size: 20px;
    width: 30px;
    height: 30px;
    top: 5px;
    right: 10px;
  }

  .map-container iframe {
    height: 250px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .service-card,
  .product-card {
    padding: 20px 15px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-item i {
    font-size: 2rem;
  }

  .sublimacion-features {
    flex-direction: column;
    gap: 15px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .feature {
    font-size: 0.9rem;
  }

  .feature i {
    font-size: 1.2rem;
  }

  .sublimacion-info h3 {
    font-size: 1.4rem;
  }

  .sublimacion-info p {
    font-size: 0.95rem;
  }

  .sublimacion-services li {
    font-size: 0.9rem;
  }

  .map-description {
    font-size: 0.9rem;
    padding: 10px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section li {
    font-size: 0.85rem;
  }

  .social-links a {
    font-size: 1.2rem;
  }
}

/* Animaciones y transiciones optimizadas para móvil */
@media (max-width: 768px) {
  .gallery-item:hover {
    transform: translateY(-5px);
  }

  .service-card:hover,
  .product-card:hover {
    transform: translateY(-5px);
  }

  .gallery-overlay {
    padding: 20px 15px 15px;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

/* Mejoras adicionales para la experiencia táctil */
* {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
.gallery-item,
.service-card,
.product-card {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.service-card:hover,
.product-card:hover {
  animation: pulse 0.3s ease-in-out;
}

/* Optimizaciones de rendimiento para móvil */
.carousel-slide img {
  will-change: transform;
}

.gallery-item img {
  will-change: transform;
}

.carousel-slides {
  will-change: transform;
}
