.servicios-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  color: #383737;
}

.servicios-section h2 {
  text-align: center;
  font-size: 36px;
  color: #e84980;
  margin-bottom: 10px;
}

.intro-text {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  color: #383737;
}

.servicios-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.servicio {
  display: flex;
  align-items: center;
  background: #fdf3f7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.servicio:hover {
  transform: scale(1.02);
}

.servicio-texto {
  flex: 1;
  padding: 30px;
}

.servicio-texto h3 {
  font-size: 24px;
  color: #f3af07;
  margin-bottom: 10px;
}

.servicio-texto p {
  font-size: 16px;
  line-height: 1.6;
}

.servicio img {
  height: 250px; 
  width: 50%;
  object-fit: cover; 
  flex-shrink: 0; 
  flex-grow: 0; 
}
.footer-container {
  font-family: 'Bebas Neue', sans-serif;
}
.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Desde 1024px hacia abajo */
@media (max-width: 1024px) {
  .servicio-texto h3 {
    font-size: 22px;
  }

  .servicio-texto p {
    font-size: 15.5px;
  }

  .servicio-texto {
    padding: 25px;
  }

  .intro-text {
    font-size: 17px;
  }
}

/* Desde 950px hacia abajo */
@media (max-width: 950px) {
  .servicio {
    gap: 20px;
  }

  .servicio-texto {
    padding: 20px;
  }

  .servicio-texto h3 {
    font-size: 21px;
  }

  .servicio-texto p {
    font-size: 15px;
  }

  .servicio img {
    width: 45%;
  }
}

/* Desde 768px hacia abajo */
@media (max-width: 768px) {
  .servicio {
    flex-direction: column;
  }

  .servicio img {
    width: 100%;
    height: 250px;
  }

  .servicio-texto {
    padding: 20px;
    text-align: center;
  }

  .servicio-texto h3 {
    font-size: 20px;
  }

  .servicio-texto p {
    font-size: 14.5px;
  }

  .intro-text {
    font-size: 16px;
  }
}

/* Desde 600px hacia abajo */
@media (max-width: 600px) {
  .servicios-section h2 {
    font-size: 28px;
  }

  .intro-text {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .servicio-texto {
    padding: 18px;
  }

  .servicio-texto h3 {
    font-size: 18px;
    margin: 10px ;
  }

  .servicio-texto p {
    font-size: 14px;
  }
    .navbar-left a {
  font-size: 15px;
  padding: 10px 0;
  line-height: 1.5;
  margin-bottom: 6px; 
}
}

/* Desde 480px hacia abajo */
@media (max-width: 480px) {
  .servicio-texto h3 {
    font-size: 17px;
  }

  .servicio-texto p {
    font-size: 13.5px;
  }

  .servicio img {
    height: 200px;
  }

  .intro-text {
    font-size: 14px;
  }
}

/* Desde 375px hacia abajo */
@media (max-width: 375px) {
  .servicios-section {
    padding: 40px 15px;
  }

  .servicios-section h2 {
    font-size: 24px;
  }

  .intro-text {
    font-size: 13px;
  }

  .servicio-texto h3 {
    font-size: 16px;
  }

  .servicio-texto p {
    font-size: 13px;
  }

  .servicio img {
    height: 180px;
  }
}
