@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #000814 0%, #001d3d 100%);
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

.detalle-servicio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.cabecera-servicio {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 20px;
  background: rgba(0, 60, 255, 0.1);
  border-radius: 15px;
  border: 2px solid #003cff;
}

.cabecera-servicio h1 {
  font-size: 3rem;
  color: #ffd60a;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.5);
}

.subtitulo {
  font-size: 1.2rem;
  color: #ccc;
  font-weight: 300;
}

.contenido-servicio {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

section h2 {
  font-size: 2rem;
  color: #ffd60a;
  margin-bottom: 25px;
  text-align: center;
}

.texto-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.grid-caracteristicas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.caracteristica {
  background: rgba(0, 60, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.caracteristica:hover {
  border-color: #003cff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 60, 255, 0.3);
}

.icono {
  font-size: 3rem;
  margin-bottom: 15px;
}

.caracteristica h3 {
  font-size: 1.3rem;
  color: #ffd60a;
  margin-bottom: 12px;
}

.caracteristica p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

.dos-columnas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 25px;
}

.lista-servicios {
  list-style: none;
  padding: 0;
}

.lista-servicios li {
  padding: 12px 0;
  font-size: 1rem;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lista-servicios li:last-child {
  border-bottom: none;
}

.seccion-destacado {
  background: linear-gradient(135deg, rgba(0, 60, 255, 0.2), rgba(0, 30, 60, 0.2));
  border: 2px solid #003cff;
}

.seccion-destacado p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #eee;
  text-align: center;
}

.grid-ventajas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.ventaja {
  background: rgba(255, 214, 10, 0.05);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 214, 10, 0.2);
}

.ventaja h3 {
  font-size: 1.2rem;
  color: #ffd60a;
  margin-bottom: 10px;
}

.ventaja p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
}

.grid-imagenes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.grid-imagenes img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 2px solid rgba(0, 60, 255, 0.3);
}

.grid-imagenes img:hover {
  transform: scale(1.05);
  border-color: #003cff;
  box-shadow: 0 10px 30px rgba(0, 60, 255, 0.5);
}

.botones-accion {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.btn-contacto,
.btn-volver {
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-contacto {
  background: linear-gradient(90deg, #ffd60a, #ffed4e);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 214, 10, 0.4);
}

.btn-contacto:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 10, 0.6);
}

.btn-volver {
  background-color: #003399;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 51, 153, 0.4);
}

.btn-volver:hover {
  background-color: #001f66;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 51, 153, 0.6);
}

@media screen and (max-width: 767px) {
  .detalle-servicio {
    padding: 25px 15px 60px;
  }

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

  .subtitulo {
    font-size: 1rem;
  }

  section {
    padding: 25px 20px;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .grid-caracteristicas,
  .dos-columnas,
  .grid-ventajas,
  .grid-imagenes {
    grid-template-columns: 1fr;
  }

  .grid-imagenes img {
    height: 200px;
  }

  .botones-accion {
    flex-direction: column;
  }

  .btn-contacto,
  .btn-volver {
    width: 100%;
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cabecera-servicio h1 {
    font-size: 2.5rem;
  }

  .grid-caracteristicas,
  .grid-ventajas,
  .grid-imagenes {
    grid-template-columns: repeat(2, 1fr);
  }
}
