

/* Contenedor de servicios */
.contenedor-servicios {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  text-align: center;
}

/* Título principal */
#titulo-servicios {
  font-size: 2.5rem;
  color: #12324f;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  margin-top: 2rem;
}

#titulo-servicios::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1f6ba7;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Párrafos */
.contenedor-servicios p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2e3c4f;
  margin-bottom: 1.2rem;
}

/* Negritas */
.contenedor-servicios strong {
  color: #1f6ba7;
  font-weight: 600;
}

/* Botón */
.btn-Servicios {
  background-color: #1f6ba7;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 107, 167, 0.4);
  display: inline-block;
}

.btn-Servicios:hover {
  background-color: #15557e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21, 85, 126, 0.5);
}

/* Responsive para móvil */
@media (max-width: 768px) {

  #titulo-servicios {
    font-size: 2rem;
  }

  .contenedor-servicios p {
    font-size: 1rem;
  }

}

/* Responsive para móvil */
@media (max-width: 520px) {
  .btn-Servicios {
    font-size: 0.7rem;
}
}













.seccion-nuestros-servicios{
  margin: 8rem 0 0;
}

.contenedor-sobre-nosotros-servicios{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.tarjeta-servicio {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;

    transition: all 0.3s ease;
}

.servicios-img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.servicios-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-servicios-1 {
    flex: 2;
    padding: 2rem;
    color: #333;
    background-color: #fff;
}

.about-servicios-1 h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1f6ba7;
}

.about-servicios-1 p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lista-gruas {
    padding-left: 1.2rem;
}

.lista-gruas > li {
    margin-bottom: 1.2rem;
    list-style: disc;
}

.lista-gruas > li > strong {
    display: block;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.lista-gruas ul {
    list-style: circle;
    margin-left: 1.5rem;
    color: #555;
}

.lista-gruas ul li {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {

  .seccion-nuestros-servicios{
  margin: 6rem 0 0;
}


 .tarjeta-servicio {
        flex-direction: column;
    }

    /* Solo las que tienen la clase especial: imagen abajo (column-reverse) */
    .tarjeta-servicio.imagen-abajo-mobile {
        flex-direction: column-reverse;
    }

    .about-servicios-1 {
        padding: 1.5rem;
    }

    .about-servicios-1 h3 {
        font-size: 1.5rem;
    }

    .about-servicios-1 p {
        font-size: 0.95rem;
    }
}




.copyright{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.2rem 0 0.3rem;
    background: var(--gradiente-botones);
}

.copyright h6{
margin: 0;
font-size: 0.8rem;
font-weight: 500;
 color: var(--color-letras-footer);
}