/* ============================================================
   1. VARIABLES / RESET COMPLETO
   ============================================================ */
:root {
  --primary: #000;
  --secondary: #fff;
  --accent: #e2001a;
  --gray: #333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-bg: #121212;
  --yellow: #fff200;
  --blue: #0033a0;
  --red: #ce1126;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light-gray);
  color: var(--primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================================
   2. HEADER COMPLETO
   ============================================================ */
/* ============================================================
   CORRECCIONES ESPECÍFICAS - TÍTULO Y HEADER
   ============================================================ */

/* HEADER REORGANIZADO - Enlaces debajo del logo */
.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--yellow);
  padding: 0.2rem 0 !important; /* Reducir padding general del header */
  border-bottom: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.3rem 0 !important; /* Reducir padding del logo */
}

.logo img {
  height: 20px;
  margin-right: 0.5rem;
}

.logo-accent {
  color: var(--red);
  font-family: 'Rye', cursive;
  font-style: italic;
}

nav a {
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px; /* Reducir espaciado entre letras */
  font-size: 0.3rem !important;
  position: relative;
  padding: 10px 4px !important; /* Reducir padding horizontal a 4px */
  margin: 0 2px !important; /* Reducir márgenes laterales */
  transition: var(--transition);
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4px !important; /* Reducir gap a mínimo */
  padding: 0.8rem 5px !important; /* Reducir padding lateral del contenedor */
  flex-wrap: nowrap;
  min-width: max-content;
}

/* Si aún es muy grande, reducir el font-size más */
@media (max-width: 768px) {
  nav a {
    font-size: 0.55rem !important;
    padding: 8px 3px !important;
    margin: 0 1px !important;
  }
  
  nav ul {
    gap: 2px !important;
    padding: 0.8rem 2px !important;
  }
}
nav a:hover,
nav a.active {
  color: var(--red);
}

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

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* HERO SECTION - TÍTULO VISIBLE */
.process-hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  color: white;
  margin-top: 30px !important; /* Ajustado para el header reorganizado */
}

.process-hero picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.process-hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-content {
  max-width: 900px;
  padding: 180px 1.8rem 0 2rem; /* Añadir padding-top para bajar el texto */
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(1.2rem, 5vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-content p {
  font-size: clamp(0.7rem, 3vw, 0.8rem) !important;
  opacity: 0.95;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.hero-btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: transparent;
  border: 2px solid var(--yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 2rem;
}

.hero-btn:hover {
  background: var(--yellow);
  color: black;
  transform: translateY(-2px);
}

.hub-links {
  margin-top: 1.8rem;
  font-size: 0.75rem !important;
}

.hub-links a {
  color: var(--yellow);
  text-decoration: none;
  transition: var(--transition);
}

.hub-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVE PARA HEADER REORGANIZADO */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  nav a {
    font-size: 10px;
  }
  
  .process-hero {
    margin-top: 130px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.6rem;
  }
  
  nav ul {
    gap: 0.4rem;
  }
  
  nav a {
    font-size: 0.6rem;
  }
  
  .process-hero {
    margin-top: 130px;
    min-height: 550px;
  }
}

/* ============================================================
   4. SECCIONES GENERALES
   ============================================================ */
.process-section {
  padding: 6rem 2rem;
  background: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  padding-bottom: 1.2rem;
  text-transform: uppercase;
  position: relative;
  color: var(--blue);
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--red);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 1.5rem auto 0;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ============================================================
   5. PROCESO DE FABRICACIÓN COMPLETO
   ============================================================ */
.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 8rem;
  align-items: center;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-image {
  flex: 1;
  min-width: 300px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  position: relative;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.process-image:hover img {
  transform: scale(1.05);
}

.process-content {
  flex: 1;
  min-width: 300px;
}

.process-content h3 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-content h3::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--yellow);
  bottom: 0;
  left: 0;
}

.process-content h3 i {
  font-size: 1.5rem;
  color: var(--red);
}

.process-content > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.process-content ul {
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.process-content li {
  margin-bottom: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  position: relative;
  padding-left: 0.5rem;
}

.process-content li::before {
  content: '•';
  color: var(--red);
  font-weight: bold;
  position: absolute;
  left: -1rem;
}

.process-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.detail-item {
  padding: 2rem 1.5rem;
  background: rgba(255, 242, 0, 0.08);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  transition: var(--transition);
}

.detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.detail-item h4 {
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-item h4 i {
  color: var(--red);
  font-size: 1.1rem;
}

.detail-item p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================================
   6. ESPECIFICACIONES TÉCNICAS COMPLETAS
   ============================================================ */
.technical-specs {
  margin-top: 3rem;
  background: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.technical-specs h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003087;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.technical-specs h4 i {
  color: var(--red);
}

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

.spec-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #0033a0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.spec-title {
  font-weight: 600;
  color: #003087;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.spec-title i {
  color: var(--red);
  font-size: 0.9rem;
}

.spec-value {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ============================================================
   7. CERTIFICACIONES COMPLETAS
   ============================================================ */
.certifications {
  margin-top: 3rem;
  background: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.certifications h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003087;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.certifications h4 i {
  color: var(--red);
}

.certifications > p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cert-item {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid #e9ecef;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0033a0, #0044b6);
  border-radius: 50%;
  color: white;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(0,51,160,0.3);
}

.cert-item h5 {
  font-size: 1.2rem;
  color: #003087;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cert-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* ============================================================
   8. PROVEEDORES COMPLETOS
   ============================================================ */
.suppliers {
  margin-top: 3rem;
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.suppliers h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003087;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.suppliers h4 i {
  color: var(--red);
}

.suppliers p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.supplier-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.supplier-logo {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  text-align: center;
  font-weight: 700;
  color: #003087;
  min-width: 180px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.supplier-logo:hover {
  transform: translateY(-5px);
  border-color: #0033a0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ============================================================
   9. CONTROL DE CALIDAD COMPLETO
   ============================================================ */
.quality-process {
  margin-top: 3rem;
  padding: 3rem;
  color: white;
  border-radius: 16px;
  background: linear-gradient(135deg, #003087 0%, #0044b6 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quality-process h4 {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.quality-process h4 i {
  color: var(--yellow);
}

.quality-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.quality-step {
  background: rgba(255,255,255,0.95);
  color: #003087;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.quality-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0,51,160,0.15);
  line-height: 1;
}

.quality-step h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003087;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.quality-step p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================================
   10. ARTESANOS COMPLETO
   ============================================================ */
.artisans-section {
  background: transparent;
  color: #000;
  padding: 6rem 2rem;
}

.artisans-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.artisan-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.artisan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.artisan-image {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.artisan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.artisan-card:hover .artisan-image img {
  transform: scale(1.1);
}

.artisan-info {
  padding: 2.5rem 2rem;
  position: relative;
}

.artisan-info h3 {
  color: var(--blue);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.artisan-info > p {
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.artisan-info .years {
  background: var(--red);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.artisan-quote {
  font-style: italic;
  color: #666;
  position: relative;
  padding-left: 2rem;
  line-height: 1.7;
  font-size: 1rem;
}

.artisan-quote::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-size: 3rem;
  color: rgba(255,242,0,0.3);
  font-family: serif;
}

/* ============================================================
   11. MATERIALES COMPLETO
   ============================================================ */
.materials-section {
  background: white;
  padding: 6rem 2rem;
}

.materials-intro {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.materials-intro p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

.materials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.material-card {
  background: var(--light-gray);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.material-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.material-icon {
  font-size: 3.5rem;
  color: var(--blue);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.material-card:hover .material-icon {
  transform: scale(1.1);
  color: var(--red);
}

.material-card h3 {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.material-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.material-origin {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
}

.material-origin i {
  font-size: 1rem;
}

/* ============================================================
   12. CTA FINAL COMPLETO
   ============================================================ */
.premium-cta {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-content p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 1.3rem 3rem;
  background: var(--yellow);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 4px;
}

.cta-btn:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(206, 17, 38, 0.3);
}

/* ============================================================
   13. FOOTER COMPLETO
   ============================================================ */
footer {
  background: white;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-col h4 {
  color: var(--blue);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--red);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-gray);
  color: var(--gray);
  font-size: 0.9rem;
}

/* ============================================================
   14. NAVEGACIÓN MÓVIL COMPLETA
   ============================================================ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; 
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #ddd;
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-around;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-bottom-nav a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 0.65rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  transition: var(--transition);
}

.mobile-bottom-nav a:hover {
  color: var(--red);
}

.mobile-bottom-nav i {
  font-size: 1.3rem;
}

.badge {
  background: var(--red);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
  right: 15px;
}

/* ============================================================
   15. COMPONENTES ADICIONALES
   ============================================================ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Payment Methods */
.payment-badge-container-white {
  text-align: center;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 12px;
  max-width: 800px;
}

.payment-title-black {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
}

.payment-icons-white {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.touch-icon {
  color: #111;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.touch-icon:hover {
  transform: translateY(-3px);
}

.touch-icon i {
  font-size: 2rem;
}

.touch-icon img {
  height: 30px;
  width: auto;
  transition: var(--transition);
}

.touch-icon:hover img {
  transform: scale(1.1);
}

/* Video CTA Local */
.video-cta-local {
  margin: 2rem 0;
  text-align: center;
}

.btn-video-local {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-video-local:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(206, 17, 38, 0.3);
}

/* ============================================================
   16. ANIMACIONES MEJORADAS
   ============================================================ */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.animate.appear {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   17. RESPONSIVE COMPLETO
   ============================================================ */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 1.5rem;
  }
  
  .process-step {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  nav a {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .process-hero {
    height: 80vh;
    min-height: 600px;
  }
  
  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .process-image {
    height: 350px;
    width: 100%;
  }
  
  .process-details {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .materials-grid,
  .artisans-grid {
    grid-template-columns: 1fr;
  }
  
  .technical-specs,
  .certifications,
  .suppliers,
  .quality-process {
    padding: 2rem 1.5rem;
  }
  
  .specs-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  
  .supplier-logos {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .process-section,
  .artisans-section,
  .materials-section {
    padding: 4rem 1.5rem;
  }
  
  .premium-cta {
    padding: 6rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .process-hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .process-image {
    height: 280px;
  }
  
  .process-content h3 {
    font-size: 1.5rem;
  }
  
  .mobile-bottom-nav {
    padding: 0.6rem 0;
  }
  
  .mobile-bottom-nav a {
    font-size: 0.6rem;
  }
  
  .mobile-bottom-nav i {
    font-size: 1.5rem !important;
  }
  
  .whatsapp-float {
    bottom: 80px;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem !important;
  }
}

@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none;
  }
}

/* ============================================================
   18. UTILIDADES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
 .payment-icons-white {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

.payment-icons-white a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 40px;
  font-size: 36px;
  color: var(--dark);
  background: white;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.payment-icons-white a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: var(--primary);
}

.payment-icons-white img {
  height: 125px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.payment-icons-white a:hover img {
  transform: scale(1.05);
}

/* Estilos específicos para cada método de pago */
.payment-icons-white .fa-cc-visa { color: #1a1f71; }
.payment-icons-white .fa-cc-mastercard { color: #eb001b; }
.payment-icons-white .fa-cc-stripe { color: #5433FF; }
.payment-icons-white .fa-google-pay { color: #5F6368; }
.payment-icons-white .fa-paypal { color: #003087; }
.payment-icons-white .fa-university { color: #28a745; }

/* Responsive */
@media (max-width: 768px) {
  .payment-icons-white {
    gap: 12px;
  }
  
  .payment-icons-white a {
    min-width: 50px;
    min-height: 35px;
    font-size: 28px;
    padding: 6px;
  }
  
  .payment-icons-white img {
    height: 120px !important;
    max-width: 70px;
  }
}

@media (max-width: 480px) {
  .payment-icons-white {
    gap: 8px;
  }
  
  .payment-icons-white a {
    min-width: 45px;
    min-height: 30px;
    font-size: 24px;
    padding: 5px;
  }
  
  .payment-icons-white img {
    height: 66px;
    max-width: 120px;
  }
}

    /* ============================
   BOTÓN VOLVER ARRIBA 2025 
   TODO con !important
============================*/

.btn-back-top {
  position: fixed !important;
  bottom: 130px !important;
  right: 25px !important;
  background: #1E3A5F !important;
  color: white !important;
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(40, 53, 147, 0.3) !important;
  z-index: 999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transform: translateY(20px) !important;
}

.btn-back-top.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.btn-back-top:hover {
  background: linear-gradient(135deg, #3949ab 0%, #283593 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(40, 53, 147, 0.4) !important;
}

.btn-back-top:active {
  transform: translateY(-1px) !important;
}

.btn-back-top i {
  font-size: 18px !important;
  transition: transform 0.3s ease !important;
}

.btn-back-top:hover i {
  transform: translateY(-2px) !important;
}

/* Animación de pulso */
.btn-back-top.pulse {
  animation: pulse 2s infinite !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 53, 147, 0.4) !important;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(40, 53, 147, 0) !important;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 53, 147, 0) !important;
  }
}