/* soporte-caletti.css - Estilos específicos para la sección de Servicio Técnico Caletti */

/* ------------------------------ */
/* HERO SECTION */
/* ------------------------------ */
.hero-servicio-tecnico {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../images/soporte/hero-soporte.webp') center/cover no-repeat;
  padding: 160px 0 140px;
  text-align: center;
  color: #fff;
}

.hero-servicio-tecnico h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-servicio-tecnico p {
  font-size: 1.35rem;
  max-width: 850px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ------------------------------ */
/* SECTION WRAPPERS */
/* ------------------------------ */
.section-servicio {
  padding: 90px 0;
  width: 100%;
}

.section-servicio h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

.section-servicio h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ------------------------------ */
/* SERVICE BLOCKS */
/* ------------------------------ */ */
.servicio-bloque {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 35px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.servicio-bloque p,
.servicio-bloque li {
  font-size: 1.05rem;
  line-height: 1.65;
}

.servicio-bloque ul {
  margin-top: 15px;
  padding-left: 20px;
}

/* ------------------------------ */
/* ICON GRID */
/* ------------------------------ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.icon-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.icon-card img {
  width: 60px;
  margin-bottom: 20px;
}

.icon-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.icon-card p {
  font-size: 1rem;
  opacity: 0.85;
}

/* ------------------------------ */
/* CTA BUTTON */
/* ------------------------------ */
.btn-servicio {
  display: inline-block;
  padding: 18px 46px;
  background: #00d5c3;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
  margin-top: 30px;
}

.btn-servicio:hover {
  background: #0bb3a6;
  transform: translateY(-2px);
}

/* ------------------------------ */
/* TABLES (Pólizas, Servicios, etc.) */
/* ------------------------------ */
.tabla-servicios {
  width: 100%;
  margin-top: 35px;
  border-collapse: collapse;
}

.tabla-servicios th {
  background: #00d5c3;
  color: #fff;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.tabla-servicios td {
  padding: 14px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 1rem;
}

.tabla-servicios tr:hover td {
  background: #f7fafa;
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */
@media (max-width: 900px) {
  .hero-servicio-tecnico h1 {
    font-size: 2.4rem;
  }

  .hero-servicio-tecnico p {
    font-size: 1.15rem;
  }

  .servicio-bloque {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .hero-servicio-tecnico {
    padding: 120px 0 100px;
  }

  .hero-servicio-tecnico h1 {
    font-size: 2rem;
  }

  .btn-servicio {
    padding: 14px 32px;
  }
}
