/* ====================================================================
   IMPRESION-STICKERS.CSS - ESTILO CLEAN STUDIO
   Página: impresion-stickers.html
   Estilo: Limpio, creativo, enfocado en personalización
   ==================================================================== */

/* === VARIABLES === */
:root {
  --stickers-white: #ffffff;
  --stickers-light: #f8f9fa;
  --stickers-gray: #e9ecef;
  --stickers-gray-dark: #dee2e6;
  --stickers-text: #333333;
  --stickers-text-light: #666666;
  --stickers-text-muted: #999999;
  --stickers-accent: #ffd300;
  --stickers-accent-hover: #ffdf3a;
  --stickers-shadow: rgba(0, 0, 0, 0.06);
  --stickers-shadow-hover: rgba(0, 0, 0, 0.12);
}

/* === AJUSTE PARA LA PÁGINA === */
.pagina-interna {
  background: var(--stickers-white);
}

/* === MAIN CONTAINER === */
.main-stickers {
  background: var(--stickers-white);
  width: 100%;
  overflow-x: hidden;
}

/* ====================================================================
   HERO LIMPIO - DISEÑO 2 COLUMNAS
   ==================================================================== */
.hero-stickers {
  min-height: 600px;
  background: var(--stickers-white);
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: var(--stickers-text);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--stickers-text-light);
  line-height: 1.6;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--stickers-light);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0 2rem;
  border-left: 4px solid var(--stickers-accent);
}

.hero-note i {
  color: var(--stickers-accent);
  font-size: 1.3rem;
}

.hero-note span {
  font-size: 0.9rem;
  color: var(--stickers-text);
  font-weight: 500;
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--stickers-accent);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 0, 0.3);
  font-size: 1rem;
}

.btn-hero:hover {
  background: var(--stickers-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 0, 0.4);
}

/* ====================================================================
   TIPOS DE STICKERS
   ==================================================================== */
.seccion-tamanos {
  padding: 5rem 2rem;
  background: var(--stickers-light);
}

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

.titulo-seccion {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--stickers-text);
  letter-spacing: -1px;
}

.subtitulo-seccion {
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
  color: var(--stickers-text-light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tamanos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tamano-card {
  background: var(--stickers-white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--stickers-shadow);
  position: relative;
  overflow: hidden;
}

.tamano-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--stickers-shadow-hover);
}

.tamano-icono {
  font-size: 3rem;
  color: var(--stickers-accent);
  margin-bottom: 1.5rem;
}

.tamano-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--stickers-text);
}

.tamano-medidas {
  font-size: 0.95rem;
  color: var(--stickers-text-light);
  margin-bottom: 1rem;
}

.tamano-badge {
  display: inline-block;
  background: var(--stickers-accent);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ====================================================================
   USOS COMUNES
   ==================================================================== */
.seccion-usos {
  padding: 5rem 2rem;
  background: var(--stickers-white);
}

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

.usos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.uso-card {
  background: var(--stickers-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.uso-card:hover {
  border-color: var(--stickers-accent);
  transform: translateY(-5px);
}

.uso-card i {
  font-size: 2.5rem;
  color: var(--stickers-accent);
  margin-bottom: 1.5rem;
}

.uso-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--stickers-text);
}

.uso-card p {
  font-size: 0.95rem;
  color: var(--stickers-text-light);
  line-height: 1.6;
}

/* ====================================================================
   CTA FINAL
   ==================================================================== */
.seccion-cta-final {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  text-align: center;
}

.container-cta {
  max-width: 800px;
  margin: 0 auto;
}

.container-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--stickers-text);
  margin-bottom: 1rem;
}

.container-cta p {
  font-size: 1.1rem;
  color: var(--stickers-text-light);
  margin-bottom: 2rem;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 3rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-cta-whatsapp i {
  font-size: 1.5rem;
}

/* ====================================================================
   BOTÓN VOLVER
   ==================================================================== */
.seccion-volver {
  text-align: center;
  padding: 2rem;
  background: var(--stickers-white);
}

.btn-volver-stickers {
  display: inline-block;
  background-color: var(--stickers-accent);
  color: var(--stickers-text);
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin: 2rem auto;
  text-align: center;
}

.btn-volver-stickers:hover {
  background-color: var(--stickers-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 768px) {
  /* HERO */
  .hero-stickers {
    min-height: auto;
    padding: 2rem 1rem 1.5rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .hero-note {
    flex-direction: row;
    text-align: left;
    padding: 0.8rem 1rem;
    margin: 1rem 0 1.5rem;
  }
  
  .hero-note i {
    font-size: 1.2rem;
  }
  
  .hero-note span {
    font-size: 0.8rem;
  }

  .btn-hero {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  /* SECCIONES */
  .seccion-tamanos,
  .seccion-usos,
  .seccion-cta-final {
    padding: 2.5rem 1rem;
  }

  .titulo-seccion {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .subtitulo-seccion {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  /* TIPOS - 2 COLUMNAS */
  .tamanos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .tamano-card {
    padding: 1.2rem 1rem;
  }

  .tamano-icono {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .tamano-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .tamano-medidas {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .tamano-badge {
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
  }

  /* USOS - 2 COLUMNAS */
  .usos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .uso-card {
    padding: 1.2rem 0.8rem;
  }

  .uso-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .uso-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .uso-card p {
    font-size: 0.8rem;
  }

  /* CTA FINAL */
  .seccion-cta-final {
    padding: 2.5rem 1rem;
  }

  .container-cta h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .container-cta p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-cta-whatsapp {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }

  .btn-cta-whatsapp i {
    font-size: 1.3rem;
  }

  /* BOTÓN VOLVER */
  .seccion-volver {
    padding: 1.5rem 1rem;
  }

  .btn-volver-stickers {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* MÓVILES MUY PEQUEÑOS */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .titulo-seccion {
    font-size: 1.4rem;
  }

  .tamano-card h3,
  .uso-card h3 {
    font-size: 0.95rem;
  }

  .btn-cta-whatsapp {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }
}