/* ============================================= */
/* === ESTILOS PÁGINA MANTENCIONES (mantenciones.html) === */
/* ============================================= */

/* --- Sección Layout Alternado (Copiado de upgrade.css) --- */
.alternating-layout-section {
  padding: 80px 0;
  background-color: #fff;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

/* Alternar el orden de imagen y texto */
.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-row .text-content {
  flex: 1;
}

.feature-row .text-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1D1D1B;
}

.feature-row .text-content p {
  font-family: 'Source Code Pro', monospace;
  line-height: 1.7;
  color: #555;
}

.feature-row .image-content {
  flex: 1;
  max-width: 450px;
}

.feature-row .image-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* --- Sección Acordeón (FAQ) (Copiado de reparaciones.css) --- */
.faq-section {
  padding: 60px 0 80px 0;
  background-color: #fff; /* Fondo blanco para diferenciarla */
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: -30px auto 50px auto;
  color: #555;
  font-family: 'Source Code Pro', monospace;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 5px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.accordion-header:hover {
  color: #F25022;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: #F25022;
  transition: transform 0.3s ease;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  font-family: 'Source Code Pro', monospace;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-panel p {
  padding: 0 10px 20px 5px;
}

/* --- Estilos cuando el acordeón está activo --- */
.accordion-item.active .accordion-header {
  font-weight: 600;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}