/* Fuente base */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('/carga/img/servicio-de-carga.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-cta {
  background-color: #ff9900;
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #e68000;
}

/* SERVICIOS */
.servicios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background: #fff;
}

.servicio {
  flex: 1 1 300px;
  margin: 15px;
  padding: 20px;
  background: #fafafa;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.servicio h2 {
  color: #ff9900;
}

/* FORMULARIO */
.formulario {
  padding: 40px 20px;
  background: #fefefe;
  text-align: center;
}

.formulario h2 {
  margin-bottom: 30px;
  color: #333;
}

.formulario form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

.formulario input,
.formulario textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.formulario button {
  background-color: #28a745;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

/* BOTONES FLOTANTES */
.botones-flotantes {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.botones-flotantes a {
  background-color: #25D366;
  color: white;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.botones-flotantes a:nth-child(2) {
  background-color: #dc3545;
}

.botones-flotantes a:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: white;
}


.descripcion {
  background-color: #f9f9f9; /* fondo suave */
  padding: 40px 20px;
}

.descripcion .contenedor {
  max-width: 1100px;
  margin: auto;
}

.descripcion h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
}

.descripcion h3 {
  margin-top: 20px;
  color: #ff6600; /* color similar al de los títulos de servicios */
}

.descripcion p,
.descripcion ul {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

.descripcion ul {
  margin: 15px 0;
  padding-left: 20px;
}

.descripcion ul li {
  margin-bottom: 8px;
}
.extra-servicio {
  max-width: 300px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.extra-servicio h2 {
  color: #ff6600;
  margin-bottom: 15px;
}

.extra-servicio h3 {
  margin-top: 15px;
  color: #333;
}

.extra-servicio p,
.extra-servicio ul {
  color: #555;
  font-size: 0.95rem;
}

.extra-servicio ul {
  margin: 10px 0;
  padding-left: 20px;
}

.extra-servicio ul li {
  margin-bottom: 5px;
}
