/* ============================================================
   alquiler-equipo.css — Estilos modernos para páginas de equipo
   Para páginas hijas: rana, placa, canguro, rotomartillo, trompo, bomba
   ============================================================ */

/* ----------------------------------------------------------
   1. HERO MODERNO con degradado y efecto vidrio
   ---------------------------------------------------------- */
.eq-hero {
  position: relative;
  background: linear-gradient(135deg, #022993 0%, #0641c8 60%, #1976d2 100%);
  color: #fff;
  padding: 90px 24px 100px;
  overflow: hidden;
}
.eq-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(247,199,95,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.eq-hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.eq-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eq-hero__breadcrumb {
  font-size: 13px;
  margin-bottom: 18px;
  opacity: 0.85;
}
.eq-hero__breadcrumb a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.5);
  transition: opacity 0.2s;
}
.eq-hero__breadcrumb a:hover { opacity: 0.7; color: #fff; text-decoration: none; }
.eq-hero__breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.5;
}
.eq-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.18);
}
.eq-hero__badge i { color: #f7c75f; }
.eq-hero__title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  color: #fff;
}
.eq-hero__title span {
  color: #f7c75f;
}
.eq-hero__subtitle {
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 30px;
  max-width: 560px;
}
.eq-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.eq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.eq-btn--primary {
  background: #f7c75f;
  color: #022993;
}
.eq-btn--primary:hover {
  background: #ffd97a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247,199,95,0.35);
  text-decoration: none;
  color: #022993;
}
.eq-btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.eq-btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.35);
  text-decoration: none;
  color: #fff;
}
.eq-btn--ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.eq-btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  text-decoration: none;
}
.eq-hero__quickstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.eq-hero__quickstat__num {
  font-size: 26px;
  font-weight: 700;
  color: #f7c75f;
  line-height: 1;
  margin-bottom: 4px;
}
.eq-hero__quickstat__label {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.3;
}
.eq-hero__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2,15,60,0.45);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
.eq-hero__image:hover {
  transform: rotate(0deg) scale(1.02);
}
.eq-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}
.eq-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(2,41,147,0.25));
  pointer-events: none;
}

/* ----------------------------------------------------------
   2. STRIP DE INDICADORES
   ---------------------------------------------------------- */
.eq-strip {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 22px 24px;
}
.eq-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.eq-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eq-strip__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8eeff;
  color: #022993;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.eq-strip__text strong {
  display: block;
  font-size: 14px;
  color: #111;
}
.eq-strip__text span {
  font-size: 12px;
  color: #666;
}

/* ----------------------------------------------------------
   3. SECCIÓN PRINCIPAL (descripción + sidebar de specs)
   ---------------------------------------------------------- */
.eq-main {
  padding: 70px 24px 60px;
  background: #fafbff;
}
.eq-main__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 44px;
  align-items: start;
}
.eq-main__content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
  line-height: 1.25;
}
.eq-main__content h2:not(:first-child) {
  margin-top: 36px;
}
.eq-main__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 22px 0 10px;
}
.eq-main__content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
.eq-main__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.eq-main__content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: #444;
  line-height: 1.55;
}
.eq-main__content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: #022993;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar de especificaciones */
.eq-specs {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 14px 40px rgba(2,15,60,0.07);
  border: 1px solid #e8eeff;
}
.eq-specs__title {
  font-size: 16px;
  font-weight: 700;
  color: #022993;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8eeff;
}
.eq-specs__row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #f1f3fa;
  gap: 10px;
}
.eq-specs__row:last-child { border-bottom: none; }
.eq-specs__label {
  font-size: 13px;
  color: #666;
}
.eq-specs__value {
  font-size: 13.5px;
  font-weight: 600;
  color: #111;
  text-align: right;
}
.eq-specs__cta {
  margin-top: 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eq-specs__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.eq-specs__cta a:hover { transform: translateY(-1px); text-decoration: none; }
.eq-specs__cta__call {
  background: #022993;
  color: #fff;
}
.eq-specs__cta__call:hover {
  background: #001f74;
  color: #fff;
  box-shadow: 0 8px 20px rgba(2,41,147,0.25);
}
.eq-specs__cta__wa {
  background: #25D366;
  color: #fff;
}
.eq-specs__cta__wa:hover {
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

/* ----------------------------------------------------------
   4. CASOS DE USO
   ---------------------------------------------------------- */
.eq-usos {
  background: #fff;
  padding: 70px 24px;
}
.eq-usos__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.eq-usos__header {
  text-align: center;
  margin-bottom: 40px;
}
.eq-usos__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #022993;
  display: block;
  margin-bottom: 8px;
}
.eq-usos__title {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 0;
}
.eq-usos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.eq-uso {
  padding: 26px 24px;
  background: #fafbff;
  border: 1px solid #e8eeff;
  border-radius: 14px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.eq-uso:hover {
  transform: translateY(-4px);
  border-color: #022993;
  box-shadow: 0 18px 40px rgba(2,41,147,0.10);
}
.eq-uso__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #022993;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.eq-uso__title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.eq-uso__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------------------------
   5. EQUIPOS RELACIONADOS (cross-link entre hijas)
   ---------------------------------------------------------- */
.eq-relacionados {
  background: #fafbff;
  padding: 70px 24px;
}
.eq-relacionados__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.eq-relacionados__header {
  text-align: center;
  margin-bottom: 36px;
}
.eq-relacionados__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #022993;
  display: block;
  margin-bottom: 8px;
}
.eq-relacionados__title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.eq-relacionados__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.eq-rel-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  text-decoration: none;
  border: 1px solid #e8eeff;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.eq-rel-card:hover {
  transform: translateY(-3px);
  border-color: #022993;
  box-shadow: 0 14px 32px rgba(2,41,147,0.10);
  text-decoration: none;
}
.eq-rel-card__icon {
  font-size: 22px;
  color: #022993;
  margin-bottom: 10px;
}
.eq-rel-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}
.eq-rel-card__text {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.45;
}
.eq-rel-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #022993;
  font-weight: 700;
  margin-top: 10px;
}

/* ----------------------------------------------------------
   6. CTA FINAL
   ---------------------------------------------------------- */
.eq-cta {
  background: linear-gradient(135deg, #022993 0%, #0641c8 100%);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.eq-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247,199,95,0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.eq-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.eq-cta__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #fff;
}
.eq-cta__text {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 26px;
}
.eq-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   7. FAQ ACORDEÓN MODERNO (sobreescribe estilos por ID)
   ---------------------------------------------------------- */
.eq-faq {
  background: #fff;
  padding: 70px 24px;
}
.eq-faq__inner {
  max-width: 860px;
  margin: 0 auto;
}
.eq-faq__header {
  text-align: center;
  margin-bottom: 36px;
}
.eq-faq__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #022993;
  display: block;
  margin-bottom: 8px;
}
.eq-faq__title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.eq-faq__item {
  background: #fafbff;
  border: 1px solid #e8eeff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.eq-faq__item.open {
  border-color: #022993;
  box-shadow: 0 8px 24px rgba(2,41,147,0.08);
}
.eq-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: inherit;
}
.eq-faq__question:hover { color: #022993; }
.eq-faq__chevron {
  font-size: 13px;
  color: #022993;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.eq-faq__item.open .eq-faq__chevron { transform: rotate(180deg); }
.eq-faq__answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}
.eq-faq__item.open .eq-faq__answer { display: block; }
.eq-faq__answer a { color: #022993; font-weight: 700; }

/* ----------------------------------------------------------
   8. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  .eq-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .eq-hero__title { font-size: 32px; }
  .eq-hero__subtitle { font-size: 16px; }
  .eq-hero__image { transform: rotate(0deg); }
  .eq-strip__inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .eq-main__inner { grid-template-columns: 1fr; gap: 30px; }
  .eq-specs { position: static; }
  .eq-cta__title { font-size: 24px; }
}
@media (max-width: 560px) {
  .eq-hero { padding: 60px 20px 70px; }
  .eq-hero__title { font-size: 26px; }
  .eq-hero__quickstats { grid-template-columns: 1fr; gap: 12px; padding-top: 16px; }
  .eq-strip__inner { grid-template-columns: 1fr; }
  .eq-usos__title, .eq-relacionados__title, .eq-faq__title { font-size: 22px; }
  .eq-main__content h2 { font-size: 22px; }
}
