/* CSS Document */

    body {
      font-family: 'Segoe UI', sans-serif;
      padding-top: 50px;
    }

    .hero {
      background: url("../img/banner.png") center center no-repeat;
      background-size: cover;
      position: relative;
      min-height: 80vh;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.3); /* oscurece la imagen */
    }
    .hero .content {
      position: relative;
      z-index: 1;
    }
    .services, .benefits, .testimonial, .cta {
      padding: 60px 20px;
    }
    .cta {
      background-color: #0d6efd;
      color: #fff;
      text-align: center;
    }
    .cta .btn {
      background-color: #fff;
      color: #0d6efd;
    }
    .icono-servicio {
      font-size: 2rem;
      color: #0d6efd;
      margin-bottom: 10px;
    }
    #whats-ico{
        position: fixed;
        bottom: 150px;
        right: 3px;
        width: 60px;
        height: 60px;
        z-index: 10000;
        font-size: 3em;
        margin-bottom: 5px;
    }
/* REPONSIVE */

@media (max-width: 768px) {
  .w-50 {
    width: 90%!important;
  }
}

