
.servicio-detalle {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.servicio-imagen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.servicio-descripcion {
  margin-top: 1rem;
}

.precio-detalle {
  font-size: 1.5rem;
  color: #ffcc00;
  font-weight: bold;
  margin: 1rem 0;
}

.boton-contacto {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ffcc00;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-contacto:hover {
  background-color: #e6b800;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}
/* recuadro */
.formulario-servicio {
  border: 2px solid #ffcc00;
  padding: 2rem;
  border-radius: 10px;
  background-color: #1a1a1a;
  color: #fff;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-servicio label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.formulario-servicio select,
.formulario-servicio input[type="file"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  background-color: #fff;
  color: #000;
}

.formulario-servicio .total {
  font-size: 1.4rem;
  color: #ffcc00;
  font-weight: bold;
  text-align: right;
  margin-top: 1rem;
}

.formulario-servicio button {
  padding: 0.75rem;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-servicio button:hover {
  background-color: #e6b800;
}

@media (max-width: 768px) {
  .formulario-servicio {
    max-width: 100%;
  }
}
.descripcion-servicio {
  padding: 2rem;
  color: white;
  background-color: #111;
  margin-bottom: 2rem;
  border-top: 3px solid #ffcc00;
}

.descripcion-servicio h2 {
  border-bottom: 2px solid red;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  
}

.descripcion-servicio ul {
  list-style: disc;
  padding-left: 1.5rem;
}



.galeria-productos-relacionados h2 {
  border-bottom: 2px solid red;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: white;
}

.productos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.productos-grid a {
  display: block;
  width: 150px;
  text-align: center;
  color: white;
  text-decoration: none;
}

.productos-grid img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #ffcc00;
  transition: transform 0.3s ease;
}

.productos-grid img:hover {
  transform: scale(1.05);
}

.productos-grid p {
  margin-top: 0.5rem;
}
