/* Importar archivos base */
@import url('variables.css');
@import url('common.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* HEADER - Estilos importados desde common.css */



/* HERO + CARRUSEL solo CSS */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%232563eb" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-text {
  max-width: 60%;
  margin-left:50px ;
  margin-top:200px;
  position: relative;
  z-index: 2;
  color: #000000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section Responsive Improvements */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    min-height: auto;
  }
  
  .hero-text {
    max-width: 100%;
    margin-left: 0;
    margin-top: 40px;
    order: 2;
  }
  
  .carousel {
    order: 1;
    position: relative;
    height: 300px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
    min-height: auto;
  }
  
  .hero-text {
    margin-top: 20px;
  }
  
  .subtitle {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  
  .product-code {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .learn-more {
    padding: 15px 40px;
    font-size: 14px;
    width: auto;
    display: inline-block;
  }
  
  .carousel {
    height: 250px;
  }
  
  .recommendations {
    padding: 60px 20px;
  }
  
  .recommendations h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .product-grid {
    gap: 20px;
    padding: 15px 0;
  }
  
  .product-card {
    flex: 0 0 250px;
    min-width: 250px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 15px;
  }
  
  .subtitle {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .product-code {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .learn-more {
    padding: 12px 30px;
    font-size: 13px;
  }
  
  .carousel {
    height: 200px;
  }
  
  .recommendations {
    padding: 40px 15px;
  }
  
  .recommendations h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .product-card {
    flex: 0 0 220px;
    min-width: 220px;
    padding: 15px;
  }
  
  .product-card h3 {
    font-size: 16px;
  }
  
  .price {
    font-size: 18px;
  }
}

.subtitle {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fbbf24;
  text-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
  letter-spacing: -1px;
}

.product-code {
  font-size: 24px;
  color: #fbbf24;
  margin-bottom: 30px;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.learn-more {
  padding: 17px 90px;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.learn-more:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96, 165, 250, 0.5);
}

/* Carrusel automático */
.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}


.slides {
  display: flex;
  width: 400%;
  height: 100%;
  animation: slide 16s infinite ease-in-out;
}

.carousel:hover .slides {
  animation-play-state: paused;
}

.carousel-img {
  width: 25%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background-color: #f0f0f0;
}

.carousel-img:not([src]) {
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
}

/* Animación automática del carrusel - con pausas de 4 segundos */
@keyframes slide {
  0% { transform: translateX(0); }
  24% { transform: translateX(0); }
  25% { transform: translateX(-25%); }
  49% { transform: translateX(-25%); }
  50% { transform: translateX(-50%); }
  74% { transform: translateX(-50%); }
  75% { transform: translateX(-75%); }
  100% { transform: translateX(-75%); }
}


/* PRODUCTOS RECOMENDADOS */
.recommendations {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  text-align: center;
}

.recommendations h2 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-shadow: 0 6px 12px rgba(37, 99, 235, 0.5), 0 2px 4px rgba(37, 99, 235, 0.3);
  letter-spacing: -2px;
}

.product-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}


.product-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  border: 1px solid #e9ecef;
  flex: 0 0 280px;
  min-width: 280px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

/* Rating System */
.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.star::before {
  content: '★';
  position: absolute;
  top: 0;
  left: 0;
  color: #ddd;
  font-size: 16px;
  line-height: 1;
}

.star.filled::before {
  color: #ff9800;
}

.star.half::before {
  color: #ff9800;
  background: linear-gradient(90deg, #ff9800 50%, #ddd 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-number {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.model {
  font-weight: 500;
  margin: 8px 0;
  color: var(--text-light);
  font-size: 14px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}


.ver-detalles {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.ver-detalles:hover {
  color: var(--blue-light);
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}


/* CONTACTO */
.contact-section {
  padding: 60px 40px;
  background: #f2f6f9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border 0.3s;
}

/* Validación visual con CSS */
.contact-form input:invalid,
.contact-form textarea:invalid {
  border: 2px solid #e74c3c;
}

.contact-form input:valid,
.contact-form textarea:valid {
  border: 2px solid #2ecc71;
}

.btn-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #333;
}

.extra-info {
  margin-top: 30px;
  text-align: center;
}

.extra-info p {
  margin: 5px 0;
}

.social-links a {
  text-decoration: none;
  color: #003087;
  margin: 0 5px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #000;
}

/* FOOTER */
.footer {
  padding: 40px;
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--primary-color);
}

.footer a {
  color: var(--blue-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* HISTORIA CORPORATIVA - NUEVA VERSIÓN */
.corporate-history {
  background: var(--bg-light);
  padding: 100px 0;
  color: var(--text-dark);
  position: relative;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header principal */
.history-hero {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.history-hero h2 {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-shadow: 0 6px 12px rgba(37, 99, 235, 0.5), 0 2px 4px rgba(37, 99, 235, 0.3);
  letter-spacing: -2px;
}

.history-hero p {
  font-size: 1.5rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Secciones generales */
.history-section {
  margin-bottom: 80px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Contexto y origen */
.context-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.context-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.context-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.context-card .year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.context-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.context-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Timeline */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  border-radius: 2px;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.timeline-dot:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.timeline-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Hitos importantes */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.milestone-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.milestone-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.milestone-card:hover .milestone-icon {
  transform: scale(1.1) rotate(10deg);
}

.milestone-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.milestone-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Crecimiento - Estadísticas */
.growth-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Filosofía */
.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.philosophy-text {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.philosophy-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--blue-light);
}

.philosophy-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-light);
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-item {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

/* Reconocimientos */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.achievement-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1) rotate(10deg);
}

.achievement-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.achievement-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Actualidad y futuro */
.future-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.current-info, .future-vision {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.current-info h4, .future-vision h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--blue-light);
}

.current-info p, .future-vision p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Elementos de apoyo */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.support-item {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.support-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.support-item:hover .support-icon {
  transform: scale(1.1) rotate(10deg);
}

.support-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.support-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  
  .history-hero h2 {
    font-size: 3rem;
  }
  
  .section-header h3 {
    font-size: 2rem;
  }
  
  .philosophy-content,
  .future-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    text-align: center;
  }
  
  .timeline-line {
    left: 20px;
    transform: none;
  }
}


/* TESTIMONIAL DESTACADO */
.testimonial-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
}

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

.quote-icon {
  font-size: 120px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: -20px;
  font-family: serif;
  opacity: 0.4;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.testimonial-content blockquote {
  font-size: 28px;
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 35px;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.testimonial-content blockquote::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
  border-radius: 2px;
}

.testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.author-info strong {
  display: block;
  font-size: 22px;
  color: #60a5fa;
  margin-bottom: 8px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(96, 165, 250, 0.3);
}

.author-info span {
  font-size: 16px;
  color: #cbd5e1;
  font-weight: 300;
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.company-name h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 1px;
}

.copyright p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.contact-email p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.developer-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.developer-link a:hover {
  color: var(--white);
  text-decoration: underline;
}




/* RESPONSIVE */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-dot {
    align-self: center;
  }
  
  .history-header h2 {
    font-size: 36px;
  }
  
  .testimonial-content blockquote {
    font-size: 22px;
  }

  /* Simulación de carrusel responsive */
  .product-card {
    flex: 0 0 250px;
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 200px;
    min-width: 200px;
  }
}



