@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== IMPORTAR FUENTES FIVO SANS ========== */
@font-face {
  font-family: "Fivo Sans Heavy";
  src: url("assets/fonts/FivoSans-Heavy.woff2") format("woff2"), url("assets/fonts/FivoSans-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fivo Sans Regular";
  src: url("assets/fonts/FivoSans-Regular.woff2") format("woff2"), url("assets/fonts/FivoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fivo Sans Light";
  src: url("assets/fonts/FivoSans-Light.woff2") format("woff2"), url("assets/fonts/FivoSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* ========== VARIABLES CSS ========== */
:root {
  --color-primary: #2DCC8A;
  --color-primary-light: #47E6A2;
  --color-dark-bg: #0A2B33;
  --color-dark-card: #132E38;
  --color-dark-hover: #1A3D48;
  --color-border: #3B5257;
  --color-text-primary: #E5E9EC;
  --color-text-secondary: #BECED2;
  --color-text-light: #CFDDE0;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.5);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Aplicación a títulos grandes */
h1, .hero-content h1, .section-title, .modal-header h2 {
  font-family: "Fivo Sans Heavy", "Inter", sans-serif;
  font-weight: 900;
}

/* Títulos medianos */
h2, h3, .badge, .resin-title, .faq-question, .cta, .btn-download, .submit-btn, .hero-btn, .nav-links a {
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
  font-weight: 400;
}

/* Textos generales */
body, p, .subhead, .spec-list li, .corporate-card p, .testimonial-card p, .faq-answer, .footer-col p, .footer-col a, .legal-center a, .small-note, .modal-body p, .cookie-banner p, .paso-texto {
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  font-weight: 300;
}

button, input, select, textarea {
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
}

body {
  background: var(--color-dark-bg);
  font-family: "Inter", sans-serif;
  color: var(--color-text-primary);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* ========== ANIMACIONES GENERALES (KEYFRAMES) ========== */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInStepLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes growLine {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(45, 204, 138, 0.3);
  }
  50% {
    box-shadow: 0 20px 80px rgba(45, 204, 138, 0.5);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0F2F38 0%, #0A2B33 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition-fast);
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-primary);
}

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

.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-text-primary);
}

/* ========== HERO ========== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(26, 52, 58, 0.7), rgba(10, 43, 51, 0.95)), url("assets/img/gppsazul.jpeg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: clamp(1.5rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(45, 204, 138, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(45, 204, 138, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
}

.hero-content.scroll-animate {
  animation: fadeInDown 0.8s var(--transition-smooth) forwards;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
}

.hero-content p {
  font-size: clamp(0.95rem, 3vw, 1.3rem);
  margin-bottom: 2rem;
  color: var(--color-text-light);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  word-wrap: break-word;
}

.hero-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-dark-bg);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(45, 204, 138, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(45, 204, 138, 0.4);
}

.hero-btn:hover::before {
  left: 100%;
}

/* ========== SECCIÓN PROMOCIONAL ========== */
.img-promo {
  width: 100%;
  height: 100%;
  border-radius: 4%;
}

/* ========== CORPORATE ========== */
.corporate {
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 2rem);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  color: #F0F4F5;
  position: relative;
  padding-bottom: 1rem;
  word-wrap: break-word;
  opacity: 0;
}

.section-title.scroll-animate {
  animation: fadeInDown 0.6s var(--transition-smooth) forwards;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.corporate-card {
  background: linear-gradient(135deg, var(--color-dark-card) 0%, #1A3D48 100%);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
}

.corporate-card.scroll-animate {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

.corporate-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(45, 204, 138, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
  opacity: 0;
}

.corporate-card:hover::before {
  opacity: 1;
  top: -25%;
  right: -25%;
}

.corporate-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #1A3D48 0%, #1F4A55 100%);
}

.corporate-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.map-container {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

/* ========== MATERIALES (TABLA) ========== */
.materials-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, rgba(10, 43, 51, 0.5) 0%, rgba(19, 46, 56, 0.3) 100%);
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  box-sizing: border-box;
}

.materials-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, var(--color-dark-card) 0%, #0F2A33 100%);
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  color: var(--color-text-primary);
  min-width: 900px;
}

.materials-table thead {
  background: linear-gradient(90deg, #1A3D48 0%, #132E38 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.materials-table th {
  padding: clamp(0.8rem, 2vw, 1.5rem);
  text-align: left;
  font-weight: 600;
  font-family: "Fivo Sans Regular", sans-serif;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.5px;
}

.materials-table td {
  padding: clamp(0.8rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(59, 82, 87, 0.5);
  vertical-align: middle;
  transition: var(--transition-fast);
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  height: auto;
  line-height: 1.5;
}

.materials-table tbody tr {
  transition: all var(--transition-fast);
  position: relative;
}

.materials-table tbody tr::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.materials-table tbody tr:hover {
  background: rgba(45, 204, 138, 0.05);
}

.materials-table tbody tr:hover::before {
  opacity: 1;
}

.material-thumb {
  width: 70px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--color-border);
  display: block;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.material-thumb:hover {
  transform: scale(1.1) rotate(2deg);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(45, 204, 138, 0.3);
}

.table-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.15rem;
  align-items: center;
  justify-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.btn-table {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: rgba(19, 46, 56, 0.6);
  color: var(--color-text-primary);
  font-family: "Fivo Sans Regular", sans-serif;
  font-size: 0.6rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: 130px;
  display: block;
  box-sizing: border-box;
}

.btn-table:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 204, 138, 0.3);
}

.btn-table.primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-dark-bg);
  border-color: var(--color-primary);
  font-weight: 600;
}

.btn-table.primary:hover {
  box-shadow: 0 8px 20px rgba(45, 204, 138, 0.4);
  transform: translateY(-3px);
}

.materials-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.materials-table li {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  line-height: 1.5;
  color: var(--color-text-light);
}

.materials-table li strong {
  display: inline-block;
  min-width: 100px;
  color: var(--color-primary);
}

/* ========== SECCIÓN DESCARGA PDF ========== */
.pdf-download-section {
  margin-top: clamp(3rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(45, 204, 138, 0.08) 0%, rgba(71, 230, 162, 0.04) 100%);
  border: 2px solid var(--color-border);
  border-radius: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.pdf-download-section.scroll-animate {
  animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

.pdf-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  max-width: 100%;
}

.pdf-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(45, 204, 138, 0.3);
  flex-shrink: 0;
}

.pdf-icon {
  font-size: clamp(2.5rem, 6vw, 4rem);
  display: block;
}

.pdf-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.5vw, 1rem);
}

.pdf-content h3 {
  font-family: "Fivo Sans Heavy", "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #F0F4F5;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
}

.pdf-content p {
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
}

.pdf-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1rem);
  margin-top: 0.5rem;
}

.feature-item {
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-pdf-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.8rem);
  padding: clamp(1rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-dark-bg);
  border: none;
  border-radius: 12px;
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(45, 204, 138, 0.3);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-pdf-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(45, 204, 138, 0.4);
}

.btn-icon {
  font-size: clamp(1rem, 2vw, 1.3rem);
  display: inline-block;
}

.btn-text {
  display: inline;
}

/* ========== TESTIMONIOS ========== */
.testimonials {
  background: linear-gradient(180deg, var(--color-dark-bg) 0%, rgba(19, 46, 56, 0.5) 100%);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 204, 138, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 204, 138, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card {
  min-width: 100%;
  background: linear-gradient(135deg, var(--color-dark-card) 0%, #1A3D48 100%);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.scroll-animate {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 6rem;
  color: rgba(45, 204, 138, 0.1);
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--color-text-light);
  position: relative;
  z-index: 2;
  word-wrap: break-word;
}

.testimonial-card h4 {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-dark-bg);
  font-size: 1.3rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  font-weight: bold;
  z-index: 10;
}

.testimonial-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.prev-testi {
  left: 15px;
}

.next-testi {
  right: 15px;
}

/* ========== FAQ ========== */
.faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 2rem);
  width: 100%;
  box-sizing: border-box;
}

.faq-container {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: linear-gradient(135deg, var(--color-dark-card) 0%, #1A3D48 100%);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
}

.faq-item.scroll-animate {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.faq-question {
  padding: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(45, 204, 138, 0.05) 0%, transparent 100%);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-right: clamp(2rem, 3vw, 2.5rem);
  font-size: clamp(0.9rem, 2vw, 1rem);
  word-wrap: break-word;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-question:hover {
  background: linear-gradient(90deg, rgba(45, 204, 138, 0.1) 0%, transparent 100%);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--color-text-light);
  background: rgba(45, 204, 138, 0.02);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 300px;
}

/* ========== SECCIÓN ORIGEN DEL PLÁSTICO (REPARADA) ========== */
.origen-section {
  max-width: 1300px;
  margin: clamp(40px, 5vw, 80px) auto;
  padding: clamp(2rem, 5vw, 60px) clamp(1rem, 4vw, 2rem);
  color: var(--color-text-primary);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.origen-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
}

.origen-header.scroll-animate {
  animation: fadeInDown 0.8s var(--transition-smooth) forwards;
}

.origen-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  margin-bottom: 30px;
  box-shadow: 0 20px 60px rgba(45, 204, 138, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.origen-icon {
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.origen-title {
  font-family: "Fivo Sans Heavy", "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #F0F4F5;
  margin-bottom: 15px;
  line-height: 1.2;
  word-wrap: break-word;
}

.origen-subtitle {
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
}

.origen-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 50px);
  margin-bottom: clamp(3rem, 5vw, 80px);
}

.origen-card {
  background: linear-gradient(135deg, var(--color-dark-card) 0%, #1A3D48 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 50px) clamp(1.5rem, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  opacity: 0;
  transform: translateY(50px);
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
}

/* Animación de tarjeta visible */
.origen-card.card-visible {
  animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

.origen-card.card-visible:nth-child(2) {
  animation-delay: 0.2s;
}

.origen-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45, 204, 138, 0.1), transparent);
  transition: left 0.6s ease;
}

.origen-card:hover::before {
  left: 100%;
}

.origen-card:hover {
  transform: translateY(-15px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
}

.card-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.card-header h3 {
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-primary);
  margin-bottom: 10px;
  word-wrap: break-word;
}

.card-badge {
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--color-primary);
  background: rgba(45, 204, 138, 0.1);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--color-primary);
  transition: var(--transition-fast);
}

.card-badge:hover {
  background: rgba(45, 204, 138, 0.2);
}

/* Timeline y pasos */
.timeline-container {
  position: relative;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 50%, transparent 100%);
  opacity: 0;
  height: 0;
}

.origen-card.steps-visible .timeline-line {
  animation: growLine 1.2s var(--transition-smooth) 0.2s forwards;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-20px);
}

.origen-card.steps-visible .timeline-step {
  animation: slideInStepLeft 0.5s var(--transition-smooth) forwards;
}

.origen-card.steps-visible .timeline-step:nth-child(1) {
  animation-delay: 0.3s;
}

.origen-card.steps-visible .timeline-step:nth-child(2) {
  animation-delay: 0.45s;
}

.origen-card.steps-visible .timeline-step:nth-child(3) {
  animation-delay: 0.6s;
}

.origen-card.steps-visible .timeline-step:nth-child(4) {
  animation-delay: 0.75s;
}

.origen-card.steps-visible .timeline-step:nth-child(5) {
  animation-delay: 0.9s;
}

.origen-card.steps-visible .timeline-step:nth-child(6) {
  animation-delay: 1.05s;
}

.step-marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--color-dark-bg), 0 0 0 6px var(--color-primary);
  transition: all var(--transition-fast);
}

.timeline-step:hover .step-marker {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px var(--color-dark-bg), 0 0 0 8px var(--color-primary-light), 0 0 20px rgba(45, 204, 138, 0.5);
}

.step-number {
  color: var(--color-dark-bg);
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-content {
  background: rgba(45, 204, 138, 0.08);
  border-left: 3px solid var(--color-primary);
  padding: 20px;
  border-radius: 10px;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 2;
}

.timeline-step:hover .step-content {
  background: rgba(45, 204, 138, 0.15);
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(45, 204, 138, 0.2);
}

.step-content h4 {
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-bottom: 8px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  word-wrap: break-word;
}

.step-content p {
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  font-weight: 300;
  color: var(--color-text-light);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
}

.card-footer {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(45, 204, 138, 0.2);
  flex-wrap: wrap;
  justify-content: center;
}

.quality-badge {
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--color-primary);
  background: rgba(45, 204, 138, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--color-primary);
  transition: all var(--transition-fast);
}

.quality-badge:hover {
  background: rgba(45, 204, 138, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(45, 204, 138, 0.2);
}

/* ========== BENEFICIOS ========== */
.origen-benefits {
  background: linear-gradient(135deg, rgba(45, 204, 138, 0.1) 0%, rgba(71, 230, 162, 0.05) 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 60px) clamp(1.5rem, 3vw, 40px);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: var(--shadow-md);
  margin-top: clamp(2rem, 5vw, 60px);
  box-sizing: border-box;
}

.origen-benefits.scroll-animate {
  animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

.origen-benefits h3 {
  font-family: "Fivo Sans Heavy", "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #F0F4F5;
  margin-bottom: clamp(2rem, 5vw, 50px);
  word-wrap: break-word;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 30px);
}

.benefit-item {
  background: rgba(19, 46, 56, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: clamp(1.5rem, 3vw, 30px);
  transition: all var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.benefit-item.scroll-animate {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

.benefit-item:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  background: rgba(45, 204, 138, 0.1);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.benefit-item h4 {
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  word-wrap: break-word;
}

.benefit-item p {
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  font-weight: 300;
  color: var(--color-text-light);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
}

/* ========== FORMULARIO ========== */
.contact-form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 2rem);
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
}

.contact-form-section.scroll-animate {
  animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

.form-container {
  background: linear-gradient(135deg, var(--color-dark-card) 0%, #1A3D48 100%);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
}

form input, form select, form textarea {
  width: 100%;
  padding: clamp(0.7rem, 2vw, 1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  background: rgba(15, 42, 51, 0.8);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text-primary);
  font-family: inherit;
  transition: var(--transition-fast);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  box-sizing: border-box;
}

form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgb(15, 42, 51);
  box-shadow: 0 0 0 3px rgba(45, 204, 138, 0.1);
}

form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: var(--color-text-secondary);
}

form input::placeholder, form textarea::placeholder {
  color: var(--color-text-secondary);
}

.submit-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-dark-bg);
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

#form-status {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

/* ========== FOOTER ========== */
.legal-center {
  text-align: center;
  padding: 2rem;
  background: rgba(19, 46, 56, 0.5);
  border-top: 1px solid var(--color-border);
}

.legal-center a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition-fast);
  font-weight: 500;
}

.legal-center a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.small-note {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
}

footer {
  background: linear-gradient(180deg, #051E24 0%, #0A2B33 100%);
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.3);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  box-sizing: border-box;
}

.footer-col {
  transition: var(--transition-fast);
}

.footer-col h4 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col p {
  color: var(--color-text-secondary);
  margin-bottom: 0.8rem;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  line-height: 1.6;
  word-wrap: break-word;
}

.footer-col a {
  color: var(--color-text-secondary);
  text-decoration: none;
  margin-right: 0.8rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(45, 204, 138, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: var(--transition-smooth);
  font-size: 1.2rem;
}

.social-icons a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  animation: fadeInDown 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, var(--color-dark-card) 0%, #1A3D48 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
  display: none;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(90deg, rgba(45, 204, 138, 0.1) 0%, transparent 100%);
}

.modal-header h2 {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.close-modal {
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 204, 138, 0.1);
}

.close-modal:hover {
  color: var(--color-primary);
  background: rgba(45, 204, 138, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.modal-body h3 {
  color: var(--color-primary);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.modal-body p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.modal-update {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ========== IMAGE MODAL ========== */
.image-modal {
  align-items: center;
  justify-content: center;
}

.image-modal .modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.image-modal .close-modal {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 2.5rem;
  color: #fff;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.image-viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 90vh;
}

.full-image {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(45, 204, 138, 0.5);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 5;
  backdrop-filter: blur(2px);
}

.side-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-dark-bg);
  transform: translateY(-50%) scale(1.1);
}

.side-btn.left {
  left: -25px;
}

.side-btn.right {
  right: -25px;
}

.counter {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: "Fivo Sans Regular", sans-serif;
  z-index: 5;
  border: 1px solid var(--color-primary);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-dark-bg);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
  font-weight: bold;
}

.back-to-top.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #0F2F38 0%, #1A3D48 100%);
  padding: 1.5rem;
  text-align: center;
  z-index: 1500;
  border-top: 2px solid var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.5s ease;
}

.cookie-banner p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.cookie-banner a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-banner button {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-dark-bg);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

.cookie-banner button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========== SCROLL ANIMATIONS ========== */
/* Clase que se agrega vía JS para disparar animación */
.scroll-animate {
  /* La animación se define en cada selector según corresponda; 
     se mantiene opacity:0 hasta que se añade la clase */
}

/* Retardos opcionales si se usan data-delay */
.scroll-animate.delay-1 {
  animation-delay: 0.1s;
}

.scroll-animate.delay-2 {
  animation-delay: 0.2s;
}

.scroll-animate.delay-3 {
  animation-delay: 0.3s;
}

/* Animación para filas de tabla generadas por JS */
.materials-table tr[data-animate] {
  opacity: 0;
}

.materials-table tr[data-animate].scroll-animate {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.materials-table tr[data-animate].scroll-animate:nth-child(1) {
  animation-delay: 0.15s;
}

.materials-table tr[data-animate].scroll-animate:nth-child(2) {
  animation-delay: 0.25s;
}

.materials-table tr[data-animate].scroll-animate:nth-child(3) {
  animation-delay: 0.35s;
}

.materials-table tr[data-animate].scroll-animate:nth-child(4) {
  animation-delay: 0.45s;
}

.materials-table tr[data-animate].scroll-animate:nth-child(5) {
  animation-delay: 0.55s;
}

.materials-table tr[data-animate].scroll-animate:nth-child(6) {
  animation-delay: 0.65s;
}

/* ========== RESPONSIVE (sin cambios) ========== */
@media (max-width: 1024px) {
  .origen-section {
    padding: clamp(2rem, 4vw, 40px) clamp(1rem, 3vw, 1.5rem);
    margin: clamp(3rem, 5vw, 60px) auto;
  }
  .origen-container {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 40px);
  }
  .origen-card {
    padding: clamp(2rem, 4vw, 40px) clamp(1.5rem, 3vw, 30px);
  }
  .card-header h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
  .origen-title {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }
  .pdf-container {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  .pdf-icon-wrapper {
    justify-self: center;
  }
  .pdf-content {
    text-align: center;
  }
  .pdf-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn-pdf-download {
    justify-self: center;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 800px) {
  .navbar {
    padding: clamp(0.8rem, 2vw, 1rem);
  }
  .menu-icon {
    display: block;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    margin-top: 1rem;
    gap: 0.8rem;
  }
  .nav-links.active {
    display: flex;
  }
  .hero-content h1 {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }
  .hero-content p {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }
  .corporate-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .prev-testi {
    left: 5px;
  }
  .next-testi {
    right: 5px;
  }
}
@media (max-width: 768px) {
  .table-responsive {
    border: none;
    overflow-x: visible;
    box-shadow: none;
  }
  .materials-table {
    min-width: auto;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  .materials-table thead {
    display: none;
  }
  .materials-table tbody {
    display: contents;
  }
  .materials-table tr {
    background: linear-gradient(135deg, var(--color-dark-card) 0%, #1A3D48 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: clamp(1.2rem, 3vw, 1.5rem);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.2rem);
    transition: all var(--transition-smooth);
  }
  .materials-table tr:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
  }
  .materials-table td {
    padding: 0;
    border-bottom: none;
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  }
  .materials-table td::before {
    content: attr(data-label);
    font-family: "Fivo Sans Regular", sans-serif;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .materials-table td:nth-child(1)::before {
    content: "Material";
  }
  .materials-table td:nth-child(2)::before {
    content: "Tipo";
  }
  .materials-table td:nth-child(3)::before {
    content: "Descripción";
  }
  .materials-table td:nth-child(4)::before {
    content: "Especificaciones";
  }
  .materials-table td:nth-child(5)::before {
    content: "Imagen";
  }
  .materials-table td:nth-child(6)::before {
    content: "Acciones";
  }
  .materials-table td ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .materials-table td ul li {
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(45, 204, 138, 0.05);
    border-left: 2px solid var(--color-primary);
    border-radius: 4px;
  }
  .materials-table td ul li:last-child {
    margin-bottom: 0;
  }
  .materials-table td ul li strong {
    color: var(--color-primary);
    display: inline;
  }
  .material-thumb {
    width: 100%;
    height: auto;
    max-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--color-border);
    display: block;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin: 0.5rem 0;
  }
  .material-thumb:hover {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(45, 204, 138, 0.3);
  }
  .table-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.6rem, 1.5vw, 0.8rem);
    margin-top: 0.5rem;
  }
  .btn-table {
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(0.8rem, 2vw, 1rem);
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    text-align: center;
    width: 100%;
  }
  .btn-table.primary {
    grid-column: 1/-1;
  }
  .origen-section {
    padding: clamp(1.5rem, 3vw, 30px) clamp(0.8rem, 2vw, 1rem);
    margin: clamp(2rem, 4vw, 50px) auto;
  }
  .origen-header {
    margin-bottom: clamp(2rem, 4vw, 50px);
  }
  .origen-icon-container {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
  }
  .origen-icon {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  .origen-title {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  }
  .origen-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
  }
  .origen-card {
    padding: clamp(1.5rem, 3vw, 30px) clamp(1rem, 2vw, 20px);
  }
  .card-header h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  }
  .card-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }
  .timeline-container {
    padding-left: clamp(25px, 5vw, 30px);
  }
  .step-marker {
    left: clamp(-30px, -5vw, -35px);
    width: 24px;
    height: 24px;
  }
  .step-number {
    font-size: 0.75rem;
  }
  .step-content {
    padding: clamp(12px, 2vw, 15px);
  }
  .step-content h4 {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
  .step-content p {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  }
  .card-footer {
    flex-direction: column;
    gap: 10px;
  }
  .quality-badge {
    width: 100%;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 20px);
  }
  .benefit-item {
    padding: clamp(1.2rem, 2vw, 20px);
  }
  .benefit-icon {
    font-size: clamp(1.8rem, 4vw, 2rem);
  }
  .benefit-item h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
  }
  .form-container {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
  .footer-content {
    gap: clamp(1rem, 2vw, 2rem);
  }
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }
  .side-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .side-btn.left {
    left: -15px;
  }
  .side-btn.right {
    right: -15px;
  }
}
@media (max-width: 480px) {
  .origen-section {
    padding: clamp(1rem, 2vw, 20px) clamp(0.8rem, 2vw, 1rem);
    margin: clamp(1.5rem, 3vw, 40px) auto;
  }
  .origen-header {
    margin-bottom: clamp(1.5rem, 3vw, 40px);
  }
  .origen-icon-container {
    width: clamp(50px, 12vw, 70px);
    height: clamp(50px, 12vw, 70px);
  }
  .origen-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  .origen-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
  }
  .origen-subtitle {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  }
  .origen-card {
    padding: clamp(1rem, 2vw, 20px) clamp(0.8rem, 1.5vw, 15px);
  }
  .card-header h3 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
  }
  .card-icon {
    font-size: clamp(1.8rem, 3.5vw, 2rem);
  }
  .timeline-container {
    padding-left: clamp(20px, 4vw, 25px);
  }
  .step-marker {
    left: clamp(-25px, -4vw, -30px);
    width: 22px;
    height: 22px;
  }
  .timeline-line {
    left: 11px;
  }
  .step-content {
    padding: clamp(10px, 1.5vw, 12px);
  }
  .step-content h4 {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  }
  .step-content p {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  }
  .origen-benefits {
    padding: clamp(1.5rem, 2vw, 30px) clamp(1rem, 2vw, 20px);
  }
  .origen-benefits h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
  .hero-content h1 {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  }
  .hero-content p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
  }
  .section-title {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  }
  .corporate-card {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
  .corporate-card h3 {
    font-size: clamp(1rem, 2vw, 1.1rem);
  }
  .corporate-card p {
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
  }
  .testimonial-card {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
  .testimonial-card p {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  }
  .form-container {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
  form input, form select, form textarea {
    padding: clamp(0.6rem, 1.5vw, 0.8rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1rem);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  .cookie-banner {
    padding: clamp(0.8rem, 1.5vw, 1rem);
    gap: clamp(0.8rem, 1.5vw, 1rem);
  }
  .cookie-banner p {
    font-size: clamp(0.75rem, 1.2vw, 0.8rem);
  }
  .cookie-banner button {
    padding: clamp(0.5rem, 1vw, 0.6rem) clamp(1rem, 2vw, 1.2rem);
    font-size: clamp(0.7rem, 1vw, 0.75rem);
  }
}
/* ========== SECCIÓN PROMOCIONAL HDPE-HMWPE ========== */
.hdpe-promo-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 2rem);
  width: 100%;
  box-sizing: border-box;
}

.hdpe-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: linear-gradient(135deg, var(--color-dark-card) 0%, #1A3D48 100%);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.hdpe-container.scroll-animate {
  animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

.hdpe-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(45, 204, 138, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.hdpe-container:hover::before {
  opacity: 1;
  top: -25%;
  right: -25%;
}

.hdpe-content {
  position: relative;
  z-index: 2;
}

.hdpe-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-dark-bg);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(45, 204, 138, 0.3);
}

.hdpe-title {
  font-family: "Fivo Sans Heavy", "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #F0F4F5;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  word-wrap: break-word;
}

.hdpe-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.hdpe-description {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  word-wrap: break-word;
}

.hdpe-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  display: inline-block;
}

.feature h4 {
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  word-wrap: break-word;
}

.feature p {
  font-family: "Fivo Sans Light", "Inter", sans-serif;
  font-weight: 300;
  color: var(--color-text-light);
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
}

.hdpe-cta-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-dark-bg);
  border: none;
  padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(45, 204, 138, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: "Fivo Sans Regular", "Inter", sans-serif;
}

.hdpe-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.hdpe-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(45, 204, 138, 0.4);
}

.hdpe-cta-btn:hover::before {
  left: 100%;
}

.hdpe-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hdpe-image-placeholder {
  width: 100%;
  height: 280px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(45, 204, 138, 0.1) 0%, rgba(45, 204, 138, 0.05) 100%);
  border: 2px dashed var(--color-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.hdpe-container:hover .hdpe-image-placeholder {
  border-color: var(--color-primary-light);
  background: linear-gradient(135deg, rgba(45, 204, 138, 0.15) 0%, rgba(45, 204, 138, 0.08) 100%);
}

.hdpe-image-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  opacity: 0.8;
}

/* ========== MODAL DE COTIZACIÓN ========== */
.cotizacion-modal {
  z-index: 2500;
}

.cotizacion-modal-content {
  max-width: 500px;
  width: 90%;
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.cotizacion-modal-content::-webkit-scrollbar {
  display: none;
}

.cotizacion-form {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cotizacion-form input,
.cotizacion-form select,
.cotizacion-form textarea {
  width: 100%;
  padding: clamp(0.7rem, 2vw, 1rem);
  background: rgba(15, 42, 51, 0.8);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text-primary);
  font-family: inherit;
  transition: var(--transition-fast);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  box-sizing: border-box;
}

.cotizacion-form input::-moz-placeholder, .cotizacion-form textarea::-moz-placeholder {
  color: var(--color-text-secondary);
}

.cotizacion-form input::placeholder,
.cotizacion-form textarea::placeholder {
  color: var(--color-text-secondary);
}

.cotizacion-form input:focus,
.cotizacion-form select:focus,
.cotizacion-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgb(15, 42, 51);
  box-shadow: 0 0 0 3px rgba(45, 204, 138, 0.1);
}

#cotizacion-form-status {
  text-align: center;
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* ========== RESPONSIVE HDPE ========== */
@media (max-width: 1024px) {
  .hdpe-container {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 3vw, 3rem);
  }
  .hdpe-image-placeholder {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  .hdpe-container {
    grid-template-columns: 1fr;
    padding: clamp(1.5rem, 2vw, 2rem);
  }
  .hdpe-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  .hdpe-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
  .hdpe-description {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  }
  .hdpe-features {
    gap: 1rem;
  }
  .feature {
    gap: 0.8rem;
  }
  .feature-icon {
    font-size: 1.5rem;
  }
  .hdpe-image-placeholder {
    aspect-ratio: 1;
  }
}
@media (max-width: 480px) {
  .hdpe-container {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
  .hdpe-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }
  .hdpe-title {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
  }
  .hdpe-subtitle {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  }
  .hdpe-description {
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  }
  .feature h4 {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
  }
  .feature p {
    font-size: clamp(0.8rem, 1.2vw, 0.85rem);
  }
  .hdpe-cta-btn {
    width: 100%;
    padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(1.2rem, 2vw, 1.5rem);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  }
  .hdpe-image-placeholder {
    aspect-ratio: 1;
  }
  .hdpe-image-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
}
/*# sourceMappingURL=styles.css.map */