/* ==========================================
   VARIABLES GLOBALES Y RESET
   ========================================== */
:root {
  --primary-gold: #F4B41A;
  --gold-light: #FFCA1A;
  --gold-hover: #e0a316;
  --emerald-green: #059669;
  --emerald-hover: #047857;
  --bg-slate-50: #f8fafc;
  --bg-slate-100: #f1f5f9;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-slate: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
  background-color: var(--bg-slate-50);
  color: #1e293b;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ==========================================
   HEADER & NAVBAR CON FONDO NEGRO
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: #000000; /* Fondo negro puro */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #1a1a1a;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO Y SOMBRA INTENSA CON COLOR #F4B41A */
.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Sombra de contorno intensa utilizando el color #F4B41A */
  filter: 
    drop-shadow(0px 0px 8px rgba(244, 180, 26, 0.95))
    drop-shadow(0px 4px 16px rgba(244, 180, 26, 0.85));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.header-logo-img:hover {
  filter: 
    drop-shadow(0px 0px 12px rgba(244, 180, 26, 1))
    drop-shadow(0px 6px 20px rgba(244, 180, 26, 0.95));
  transform: scale(1.02);
}

/* TÍTULO EN CABECERA PARA PANTALLAS PEQUEÑAS */
.header-brand-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff; /* Texto blanco sobre fondo negro */
  text-align: center;
}

.header-brand-title .highlight-change {
  color: #F4B41A;
}

/* NAVEGACIÓN DESKTOP */
.desktop-nav {
  display: none;
  gap: 1.2rem;
  align-items: center;
}

.desktop-nav a:not(.whatsapp-btn) {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.desktop-nav a:not(.whatsapp-btn):hover {
  color: #F4B41A;
}

/* BOTÓN WHATSAPP (GENERAL Y DESKTOP) */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn i {
  width: 18px;
  height: 18px;
}

/* BOTÓN MÓVIL (HAMBURGUESA) */
.menu-toggle-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s;
}

.menu-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle-btn i {
  width: 28px;
  height: 28px;
}

/* MENÚ DESPLEGABLE MÓVIL EN NEGRO */
.mobile-nav {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  border-top: 1px solid #1a1a1a;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}

.mobile-link {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #F4B41A;
}

/* AJUSTE BOTÓN WHATSAPP MÓVIL */
.mobile-whatsapp-btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

/* CLASE UTILITARIA PARA OCULTAR EL MENÚ MÓVIL */
.hidden {
  display: none !important;
}

/* ==========================================
   PANTALLAS MEDIANAS Y GRANDES (DESKTOP)
   ========================================== */
@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle-btn,
  .header-brand-title {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding: 3rem 0 6rem;
  background-color: var(--white);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background-color: rgba(251, 191, 36, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  text-align: center;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(to right, #f59e0b, #d97706, #ca8a04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--primary-gold);
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(244, 180, 26, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--white);
  color: #1e293b;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid #cbd5e1;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-slate-50);
  border-color: var(--emerald-green);
  color: var(--emerald-green);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  border-radius: 1.5rem;
  object-fit: contain;
  max-height: 340px;
  transition: var(--transition);
  filter: drop-shadow(0 10px 35px rgba(244, 180, 26, 0.6));
}

.hero-img:hover {
  transform: translateY(-12px);
  filter: drop-shadow(0 20px 60px rgba(244, 180, 26, 0.95));
}

@media (min-width: 640px) {
  .hero-glow { width: 600px; }
  .hero-title { font-size: 3rem; }
  .hero-description { font-size: 1.125rem; }
  .hero-buttons { flex-direction: row; }
  .hero-img { max-height: 440px; }
}

@media (min-width: 1024px) {
  .hero { padding: 5rem 0 9rem; }
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
  .hero-content {
    grid-column: span 6;
    text-align: left;
  }
  .hero-description { margin-left: 0; }
  .hero-buttons { justify-content: flex-start; }
  .hero-image-wrapper { grid-column: span 6; }
}

/* ==========================================
   SECCIÓN DE SERVICIOS
   ========================================== */
.services {
  padding: 3rem 0;
  background-color: rgba(241, 245, 249, 0.7);
  border-top: 1px solid var(--border-slate);
  border-bottom: 1px solid var(--border-slate);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-slate);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.card-venta:hover { border-color: #fbbf24; box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.2); }
.card-compra:hover { border-color: #34d399; box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.2); }
.card-tecnico:hover { border-color: #c084fc; box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.2); }

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-amber { background-color: rgba(245, 158, 11, 0.1); color: #d97706; }
.icon-emerald { background-color: rgba(16, 185, 129, 0.1); color: #059669; }
.icon-purple { background-color: rgba(168, 85, 247, 0.1); color: #7c3aed; }

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.link-amber { color: #d97706; }
.link-emerald { color: #059669; }
.link-purple { color: #7c3aed; }

@media (min-width: 768px) {
  .services { padding: 4rem 0; }
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================
   SECCIÓN PRODUCTOS / CELULARES
   ========================================== */
.products {
  padding: 3rem 0;
  background-color: var(--white);
}

.product-card {
  background-color: var(--bg-slate-50);
  border-radius: var(--radius-2xl);
  padding: 1.25rem;
  border: 1px solid var(--border-slate);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  border-color: #fbbf24;
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.2);
}

.product-img-box {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--primary-gold);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  box-shadow: var(--shadow-sm);
}

.product-img {
  height: 12rem;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-specs {
  background-color: var(--white);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-slate);
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.375rem;
}

.spec-row:last-child { margin-bottom: 0; }

.spec-val {
  color: var(--text-dark);
  font-weight: 600;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-price {
  color: #d97706;
  font-size: 1.25rem;
  font-weight: 900;
  margin-top: 0.25rem;
}

.btn-buy {
  margin-top: 1rem;
  width: 100%;
  background-color: var(--emerald-green);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
}

.btn-buy:hover {
  background-color: var(--emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.4);
}

@media (min-width: 640px) {
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .product-img { height: 14rem; }
  .product-title { font-size: 1.25rem; }
  .product-price { font-size: 1.5rem; }
  .btn-buy { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================
   SECCIÓN ACCESORIOS
   ========================================== */
.accessories {
  padding: 3rem 0;
  background-color: rgba(241, 245, 249, 0.7);
  border-top: 1px solid var(--border-slate);
  border-bottom: 1px solid var(--border-slate);
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.acc-card {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  padding: 1rem;
  border: 1px solid var(--border-slate);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.acc-card:hover {
  transform: translateY(-8px);
  border-color: #fbbf24;
  box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.2);
}

.acc-img-box {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-slate-50);
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #f1f5f9;
  margin-bottom: 0.75rem;
}

.acc-title {
  font-weight: 700;
  color: var(--text-dark);
}

.acc-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.acc-price {
  font-weight: 900;
  color: #d97706;
  margin-top: 0.5rem;
}

.btn-acc {
  margin-top: 0.75rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background-color: var(--emerald-green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.625rem;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.btn-acc:hover {
  background-color: var(--emerald-hover);
  transform: translateY(-2px);
}

@media (min-width: 640px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================
   SECCIÓN OFERTAS
   ========================================== */
.offers {
  padding: 3rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.offer-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 50%, #ffffff 100%);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  border: 1px solid rgba(252, 211, 77, 0.8);
  box-shadow: var(--shadow-2xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.offer-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text-dark);
}

.offer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.offer-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border-slate);
  padding: 1rem;
  border-radius: var(--radius-2xl);
  max-width: 24rem;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.offer-discount {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--primary-gold);
  color: var(--text-dark);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
}

.offer-img-box {
  background-color: var(--bg-slate-50);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
}

.offer-img {
  max-height: 10rem;
  object-fit: contain;
}

.offer-prices {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.old-price {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.new-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #d97706;
}

.offer-tag-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-slate-100);
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border-slate);
}

@media (min-width: 640px) {
  .offer-banner { padding: 2.5rem; }
  .offer-title { font-size: 2.25rem; }
  .offer-desc { font-size: 1rem; }
  .offer-img { max-height: 11rem; }
}

@media (min-width: 1024px) {
  .offer-banner { grid-template-columns: repeat(12, 1fr); }
  .offer-info { grid-column: span 7; text-align: left; }
  .offer-card-wrapper { grid-column: span 5; }
}

/* ==========================================
   SECCIÓN POR QUÉ ELEGIRNOS
   ========================================== */
.why-us {
  padding: 3rem 0;
  background-color: rgba(241, 245, 249, 0.7);
  border-top: 1px solid var(--border-slate);
  border-bottom: 1px solid var(--border-slate);
}

.feature-card {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  border: 1px solid var(--border-slate);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.feature-card.f-gold:hover { border-color: #fbbf24; }
.feature-card.f-emerald:hover { border-color: #34d399; }
.feature-card.f-purple:hover { border-color: #c084fc; }

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* ==========================================
   SECCIÓN UBICACIÓN Y CONTACTO
   ========================================== */
.seccion-contacto {
  width: 100%;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.contenedor-contacto {
  max-width: 1280px;
  margin: 0 auto;
}

.malla-contacto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .malla-contacto {
    grid-template-columns: repeat(12, 1fr);
  }
}

/* Tarjeta del Mapa */
.tarjeta-mapa {
  width: 100%;
  min-height: 350px;
  background-color: #f8fafc;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .tarjeta-mapa {
    grid-column: span 7 / span 7;
    min-height: 100%;
  }
}

.mapa-iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

/* Tarjeta de Información */
.tarjeta-info {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .tarjeta-info {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .tarjeta-info {
    grid-column: span 5 / span 5;
  }
}

.grupo-info > * + * {
  margin-top: 1.5rem;
}

.titulo-info {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
  margin: 0 0 1.5rem 0;
}

.item-contacto {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Iconos */
.icono-box {
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icono-alerta {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.icono-exito {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.icono {
  width: 1.5rem;
  height: 1.5rem;
}

/* Tipografía */
.etiqueta-contacto {
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.texto-contacto {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
}

.subtexto-contacto {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1rem;
  margin: 0;
}

/* Botón Acción */
.boton-llegar {
  margin-top: 1.5rem;
  width: 100%;
  background-color: #f59e0b;
  color: #ffffff;
  font-weight: 700;
  padding: 0.875rem 0;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-sizing: border-box;
}

.boton-llegar:hover {
  background-color: #d97706;
}

.boton-llegar:active {
  transform: scale(0.98);
}

.icono-boton {
  width: 1rem;
  height: 1rem;
}

/* ==========================================
   SECCIÓN MÉTODOS DE PAGO
   ========================================== */
.payment-methods-section {
  width: 100%;
  padding: 3rem 1rem;
  background-color: #ffffff;
  box-sizing: border-box;
}

.payment-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

/* Encabezados */
.payment-title {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.payment-subtitle {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* Malla Adaptativa */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tarjeta Individual */
.payment-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  border-color: #F4B41A;
}

/* Imagen y Contenedor */
.payment-img-wrapper {
  width: 5rem;
  height: 5rem;
  min-height: 5rem;
  background-color: #ffffff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  box-sizing: border-box;
}

.payment-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Textos dentro de la Tarjeta */
.payment-card-title {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.payment-card-desc {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #475569;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

/* Etiquetas (Badges) */
.payment-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  background-color: #e2e8f0;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  line-height: 1;
  margin-top: auto;
}

.payment-badge.badge-highlight {
  background-color: rgba(245, 158, 11, 0.15);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ==========================================
   FOOTER (PIE DE PÁGINA) EN NEGRO
   ========================================== */
.site-footer {
  background-color: #000000; /* Fondo negro puro */
  color: #ffffff;
  border-top: 1px solid #1a1a1a;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .footer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Grid del Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
  }

  .footer-col-brand {
    grid-column: span 2 / span 2;
  }
}

/* Columna Marca y Logo */
.footer-col-brand > * + * {
  margin-top: 1rem;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(244, 180, 26, 0.8));
}

.footer-brand-desc {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 24rem;
  margin: 0;
}

/* Estilos Redes Sociales */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: #18181b;
  color: #a1a1aa;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.social-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.social-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.social-btn.instagram:hover {
  background-color: #e1306c;
}

.social-btn.facebook:hover {
  background-color: #1877f2;
}

.social-btn.whatsapp:hover {
  background-color: #25d366;
}

/* Encabezados de Columna */
.footer-title {
  color: #F4B41A;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
}

/* Listas de Enlaces */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list > li + li {
  margin-top: 0.5rem;
}

.footer-list a {
  color: #a1a1aa;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

/* Lista de Contacto */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list > li + li {
  margin-top: 0.75rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a1a1aa;
  font-size: 0.875rem;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
  color: #F4B41A;
  flex-shrink: 0;
}

/* Footer Bottom (Legal y Copyright) */
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: #71717a;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #71717a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #a1a1aa;
}

/* ==========================================
   UTILIDADES JS Y CLASES DE APOYO
   ========================================== */
.hidden {
  display: none !important;
}

#mobile-menu {
  transition: all 0.3s ease-in-out;
}