/* ===== VARIABLES ===== */
:root {
  --cyan: #00d4ff;
  --cyan-dark: #00a8cc;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a2e;
  --gray: #888;
  --light: #f5f5f5;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
  --radius: 16px;
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 4px; }

/* ===== UTILIDADES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.left { text-align: left; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header h2 span { color: var(--cyan); }
.section-header p { color: var(--gray); font-size: 1.1rem; }

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.4);
}
.btn-outline {
  border-color: var(--cyan);
  color: var(--cyan);
  background: transparent;
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--black);
  transform: translateY(-3px);
}
.btn-small { padding: 10px 20px; font-size: 0.9rem; border-radius: 8px; width: 100%; justify-content: center; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 10px 0;
}
#header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
  padding: 5px 0;
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 55px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1b2a 50%, #0a0a0a 100%);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}
.hero-logo {
  height: 130px;
  width: auto;
  margin: 0 auto 30px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--cyan); }
.hero-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--cyan);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BANNER STRIP ===== */
.banner-strip {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  padding: 18px 20px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.strip-item {
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== PRODUCTOS ===== */
.productos { background: var(--dark); }

.filtros {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filtro-btn {
  padding: 10px 24px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filtro-btn:hover,
.filtro-btn.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
}

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

.producto-card {
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 212, 255, 0.3);
}
.producto-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0d1117;
}
.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.producto-card:hover .producto-img img { transform: scale(1.08); }

.producto-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cyan);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.producto-badge.oferta { background: #ff4757; color: white; }

.producto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.producto-card:hover .producto-overlay { opacity: 1; }
.btn-ver {
  background: var(--cyan);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-ver:hover { transform: scale(1.05); }

.producto-info { padding: 20px; }
.producto-info h3 { font-size: 1.1rem; margin-bottom: 6px; }
.producto-desc { color: var(--gray); font-size: 0.88rem; margin-bottom: 14px; line-height: 1.5; }
.producto-precio { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.precio-actual { font-size: 1.3rem; font-weight: 700; color: var(--cyan); }
.precio-antes { font-size: 0.9rem; color: var(--gray); text-decoration: line-through; }

/* ===== SERVICIOS ===== */
.servicios { background: var(--black); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.servicio-card {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servicio-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  transform: scaleX(0);
  transition: var(--transition);
}
.servicio-card:hover { transform: translateY(-8px); border-color: rgba(0, 212, 255, 0.2); }
.servicio-card:hover::before { transform: scaleX(1); }

.servicio-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,168,204,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--cyan);
  border: 2px solid rgba(0,212,255,0.2);
  transition: var(--transition);
}
.servicio-card:hover .servicio-icon {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--black);
  transform: rotate(10deg) scale(1.1);
}
.servicio-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.servicio-card p { color: var(--gray); line-height: 1.7; font-size: 0.95rem; }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  padding: 60px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item { color: var(--black); }
.stat-item i { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.8; }
.stat-item h3 { font-size: 3rem; font-weight: 900; }
.stat-item p { font-weight: 600; font-size: 1rem; opacity: 0.9; }

/* ===== NOSOTROS ===== */
.nosotros { background: var(--dark); }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nosotros-img {
  position: relative;
  text-align: center;
}
.about-logo {
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
}
.nosotros-badge {
  position: absolute;
  bottom: -20px; right: 10%;
  background: var(--cyan);
  color: var(--black);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}
.nosotros-content .lead {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.7;
}
.nosotros-content > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}
.nosotros-lista {
  margin-bottom: 32px;
}
.nosotros-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.nosotros-lista li i { color: var(--cyan); font-size: 1.1rem; }

/* ===== GALERÍA ===== */
.galeria { background: var(--black); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.galeria-item {
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark2);
  cursor: pointer;
}
.galeria-item:first-child { grid-row: span 2; }
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.08); }

/* ===== TESTIMONIOS ===== */
.testimonios { background: var(--dark); }
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.testimonio-card {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.testimonio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,255,0.2);
}
.estrellas { color: #ffd700; font-size: 1.1rem; margin-bottom: 16px; }
.testimonio-card > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 14px;
}
.autor-avatar i { font-size: 2.5rem; color: var(--cyan); }
.testimonio-autor strong { display: block; font-size: 1rem; }
.testimonio-autor span { color: var(--gray); font-size: 0.85rem; }

/* ===== CONTACTO ===== */
.contacto { background: var(--black); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-card i {
  font-size: 1.5rem;
  color: var(--cyan);
  width: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-card h4 { font-size: 0.9rem; color: var(--gray); margin-bottom: 4px; }
.info-card a { color: var(--white); transition: var(--transition); }
.info-card a:hover { color: var(--cyan); }

.redes-sociales { padding-top: 24px; }
.redes-sociales h4 { margin-bottom: 16px; color: var(--gray); font-size: 0.9rem; }
.redes-iconos { display: flex; gap: 12px; }
.red-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--white);
}
.red-icon.facebook { background: #1877F2; }
.red-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.red-icon.whatsapp { background: #25D366; color: white; }
.red-icon.tiktok { background: var(--black); border: 2px solid rgba(255,255,255,0.2); }
.red-icon:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

/* Formulario */
.contacto-form {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group select option { background: var(--dark2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--cyan);
  border-radius: 10px;
  color: var(--cyan);
  text-align: center;
  font-weight: 600;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  padding-top: 70px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray); line-height: 1.8; font-size: 0.9rem; }
.footer-links h4,
.footer-contacto h4 { font-size: 1rem; margin-bottom: 20px; color: var(--white); }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: var(--gray); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--cyan); padding-left: 5px; }
.footer-contacto p { color: var(--gray); font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contacto i { color: var(--cyan); }

.footer-redes { display: flex; gap: 12px; margin-top: 20px; }
.footer-redes a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
  font-size: 0.9rem;
}
.footer-redes a:hover { background: var(--cyan); color: var(--black); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}
.footer-bottom strong { color: var(--cyan); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 48px; height: 48px;
  background: var(--dark2);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--cyan); color: var(--black); transform: translateY(-4px); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.15); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8); }
}

/* ===== LOGO TEXTO FALLBACK ===== */
.logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
}
.logo-text span { color: var(--cyan); }

.hero-logo-fallback {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-logo-fallback span { color: var(--cyan); }

.logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  padding: 40px;
}
.logo-fallback em { color: var(--cyan); font-style: normal; }
.logo-fallback small { font-size: 1rem; font-weight: 400; color: var(--gray); margin-top: 8px; }

/* ===== HERO TAG ===== */
.hero-tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
}

/* ===== BTN WHATSAPP HERO ===== */
.btn-wa {
  background: #25D366;
  color: white;
  border: 2px solid #25D366;
}
.btn-wa:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }

/* ===== BTN WA CARD ===== */
.btn-wa-card {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-wa-card:hover { transform: scale(1.05); background: #1ebe5b; }

/* ===== BTN WA GRANDE ===== */
.btn-wa-grande {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 24px 0;
  transition: var(--transition);
  text-decoration: none;
}
.btn-wa-grande:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }

/* ===== GALERÍA MEJORADA ===== */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 14px;
}
.galeria-item { overflow: hidden; border-radius: 12px; background: var(--dark2); cursor: pointer; }
.galeria-item.tall { grid-row: span 2; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.galeria-item:hover img { transform: scale(1.08); }

/* ===== STATS PLUS ===== */
.stat-item { position: relative; }
.counter-plus { font-size: 2rem; font-weight: 900; color: var(--black); }

/* ===== HIDDEN (filtro) ===== */
.producto-card.hidden { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 50px; }
  .nosotros-img { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-rows: repeat(2, 180px); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--dark2);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    padding: 40px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; }

  .hero-btns { flex-direction: column; align-items: center; }
  .banner-strip { gap: 20px; }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galeria-item:first-child { grid-row: span 1; }
  .contacto-form { padding: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .productos-grid { grid-template-columns: 1fr; }
  .servicios-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Instagram button */
.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important;
  border: none;
}
.btn-instagram:hover { opacity: 0.85; transform: translateY(-2px); }

/* Instagram floating button */
.btn-float-ig {
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(188,24,136,0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-float-ig:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(188,24,136,0.6); }