/* ===== RESET & VARIABLES ===== */
:root {
  --primary: #e84393;
  --primary-dark: #d63384;
  --secondary: #fd79a8;
  --accent: #ffb8d0;
  --dark: #2d3436;
  --light: #fff5f7;
  --gray: #636e72;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(232, 67, 147, 0.12);
  --shadow-lg: 0 20px 60px rgba(232, 67, 147, 0.18);
  --radius: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 67, 147, 0.5);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ===== TÍTULOS DE SECCIÓN ===== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--dark);
}

/* Ajuste para secciones con fondo oscuro */
.productos .section-title h2,
.articulos .section-title h2,
.portafolio .section-title h2,
.testimonios .section-title h2,
.contacto .section-title h2 {
  color: var(--white);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Ajuste texto sección en fondos oscuros */
.productos .section-title p,
.articulos .section-title p,
.portafolio .section-title p,
.testimonios .section-title p,
.contacto .section-title p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.navbar.scrolled .logo {
  color: var(--primary);
}

.nav-logo-img {
  height: 50px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--dark);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e84393 0%, #fd79a8 50%, #ffb8d0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 35px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s ease 0.4s both;
}

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

/* ===== PRODUCTOS (FONDO: PLUMAS) ===== */
.productos {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('img/3.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.producto-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  color: var(--dark);
}

.producto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.producto-card:hover::before {
  transform: scaleX(1);
}

.producto-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.producto-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.1), rgba(253, 121, 168, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.producto-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.producto-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== ARTÍCULOS DE PROMO (FONDO: PELAJE) ===== */
.articulos {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/2.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white);
}

.articulos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.articulos-image {
  position: relative;
}

.articulos-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.articulos-image .floating-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--white);
  padding: 25px 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 4px solid var(--light);
}

.floating-card .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.floating-card .label {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 600;
}

.articulos-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}

.articulos-text h2 span {
  color: var(--accent);
}

.articulos-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.articulos-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat h3 {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 800;
}

.stat p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* ===== PORTAFOLIO (FONDO: PLUMAS + CÍRCULOS CON IMAGEN) ===== */
.portafolio {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('img/2.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white);
}

.portafolio-circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.circle-item {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  padding: 30px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: url('img/log1.png') center/cover no-repeat;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.circle-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.6), rgba(0, 0, 0, 0.5));
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.circle-item:hover {
  transform: scale(1.15);
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.circle-item:hover::before {
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.4), rgba(0, 0, 0, 0.3));
}

.circle-icon,
.circle-item h3,
.circle-item p {
  z-index: 1;
  position: relative;
}

.circle-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.circle-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.circle-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ===== MODALES DE GALERÍA ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

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

.modal-content {
  background: url('img/3.jpg') center/cover no-repeat;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin: 40px auto;
  padding: 50px 40px;
  border-radius: var(--radius);
  max-width: 1100px;
  width: 92%;
  position: relative;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light);
  line-height: 1;
}

.close-modal:hover {
  color: var(--primary);
  background: var(--white);
  transform: rotate(90deg);
  box-shadow: var(--shadow);
}

.modal-content h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  text-align: center;
  padding-right: 60px;
}

.modal-content > p {
  text-align: center;
  color: var(--dark);
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 500;
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--light);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
  cursor: zoom-in;
}

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

/* ===== ESTILOS PARA ZOOM / LIGHTBOX BASE ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 3001;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

/* ===== SUBCATEGORÍAS (CUADROS CLICKEABLES) ===== */
.subcategory-card {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('img/2.jpg');
  background-size: cover;
  background-position: center;
  border: 3px solid var(--primary);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.subcategory-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.subcategory-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}

.subcategory-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 15px 30px rgba(232, 67, 147, 0.35);
}

/* ===== TESTIMONIOS (FONDO: PELAJE) ===== */
.testimonios {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/3.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonio-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: var(--dark);
}

.testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #fdcb6e;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonio-card p {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

/* Grupos de colores repetidos para 6 testimonios */
.testimonio-card:nth-child(1) .author-avatar,
.testimonio-card:nth-child(4) .author-avatar {
  background: var(--primary);
}

.testimonio-card:nth-child(2) .author-avatar,
.testimonio-card:nth-child(5) .author-avatar {
  background: var(--secondary);
}

.testimonio-card:nth-child(3) .author-avatar,
.testimonio-card:nth-child(6) .author-avatar {
  background: var(--accent);
}

.author-info h4 {
  font-size: 1rem;
  color: var(--dark);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== CONTACTO (FONDO: PLUMAS) ===== */
.contacto {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('img/2.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white);
}

.contacto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contacto-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white);
}

.contacto-info > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

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

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.2), rgba(253, 121, 168, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--white);
}

.info-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contacto-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  background: var(--light);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 67, 147, 0.1);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contacto-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('img/3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 15px;
  display: inline-block;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  transition: var(--transition);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

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

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  color: #ffffff;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--primary-dark);
}

/* ===== ANIMATIONS ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   CARRUSEL LIGHTBOX (GLOBAL - PC Y MÓVIL)
   ========================================= */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(232, 67, 147, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 1rem;
  z-index: 3002;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
.lightbox-img-anim { animation: slideIn 0.3s ease; }

/* ===== RESPONSIVE FINAL ===== */
@media (max-width: 992px) {
  .productos-grid,
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
  .articulos-wrapper,
  .contacto-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 2.8rem; }
  .articulos-image img { height: 350px; }
  .articulos-image .floating-card { right: 10px; bottom: -15px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--dark); flex-direction: column; justify-content: center;
    transition: var(--transition); padding: 40px;
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: var(--white) !important; font-size: 1.2rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .productos-grid, .testimonios-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .articulos-stats { gap: 25px; flex-wrap: wrap; }
  .section-title h2 { font-size: 2rem; }
  .portafolio-circles { gap: 25px; }
  .circle-item { width: 240px; height: 240px; padding: 20px; }
  .circle-icon { font-size: 2.8rem; }
  .circle-item h3 { font-size: 0.95rem; }
  .circle-item p { font-size: 0.8rem; }
  .modal-content { padding: 30px 20px; margin: 20px auto; width: 95%; }
  .modal-content h2 { font-size: 1.5rem; padding-right: 50px; }
  .close-modal { top: 15px; right: 15px; font-size: 2rem; width: 45px; height: 45px; }
  .modal-gallery { grid-template-columns: 1fr; gap: 15px; }
  .gallery-item img { height: 220px; }
  .lightbox-close { top: 15px; right: 15px; font-size: 2.5rem; }
  #lightbox-img { max-width: 95%; }
  .nav-logo-img { height: 40px; }
  .subcategory-grid { grid-template-columns: 1fr; gap: 20px; }
  .subcategory-card { padding: 25px 15px; }
  
  /* Ajustes responsive del carrusel */
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-counter { bottom: 15px; font-size: 0.9rem; padding: 6px 15px; }
}
