/**
 * TALLER.CSS
 * Estilos específicos para la página "Taller"
 * Diseño Minimalista & Smart
 */

/* ============================================
   HERO SECTION
   ============================================ */

.taller-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/recursos/imagenes/banners/hero-2.jpg');
  background-size: cover;
  background-position: center;
  padding: 160px 0 100px;
  position: relative;
  color: var(--color-white, #ffffff);
  text-align: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge .material-icons {
  font-size: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================
   SECTIONS & LAYOUT
   ============================================ */

.taller-section {
  padding: 100px 0;
}

.section--primary {
  background: #ffffff;
}

.section--gray {
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-badge {
  display: inline-block;
  padding: 4px 12px;
  background: transparent;
  color: var(--color-akt-red, #E20613);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(226, 6, 19, 0.2);
  border-radius: 4px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   CARDS (Minimalist)
   ============================================ */

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

.servicio-card,
.ventaja-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 2px;
  text-align: left;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.servicio-card:hover,
.ventaja-card:hover {
  border-bottom-color: var(--color-akt-red, #E20613);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.servicio-icon,
.ventaja-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

/* Colors for icons */
.servicio-icon { color: var(--color-akt-blue, #004F9E); }
.ventaja-icon { color: var(--color-akt-red, #E20613); }

.servicio-icon .material-icons,
.ventaja-icon .material-icons {
  font-size: 36px;
}

.servicio-title,
.ventaja-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.servicio-description,
.ventaja-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 24px;
}

.servicio-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicio-list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
}

.servicio-list li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-akt-red, #E20613);
  border-radius: 50%;
}

/* ============================================
   PROCESO TIMELINE
   ============================================ */

.proceso-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  counter-reset: step;
}

.proceso-step {
  text-align: left;
  position: relative;
  padding-top: 20px;
}

.proceso-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-akt-red, #E20613);
}

.step-number {
  display: none; /* Hidden in this minimalist design, using line instead */
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.step-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   HORARIOS
   ============================================ */

.horarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.horario-card {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
}

.horario-card .material-icons {
  font-size: 28px;
  color: var(--color-akt-red, #E20613);
  margin-bottom: 12px;
}

.horario-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.horario-time {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

/* ============================================
   CONTACTO
   ============================================ */

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contacto-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  border-left: 3px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.contacto-item:hover {
  border-left-color: var(--color-akt-red, #E20613);
}

.contacto-item .material-icons {
  color: var(--color-akt-red, #E20613);
  font-size: 24px;
}

.contacto-item strong {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 4px;
}

.contacto-item p {
  color: #555555;
  margin: 0;
}

.contacto-item a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .horarios-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .taller-hero {
    padding: 120px 0 80px;
  }
  
  .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
