body {
      font-family: Arial, sans-serif;
    }

    .section {
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-section {
      height: 100vh;
      color: white;
      background: linear-gradient(45deg, #2B2B2B, #FF6F61, #2E86C1, #F4D03F);
      background-size: 600% 600%;
      animation: backgroundAnimation 10s ease infinite;
    }

    .hero-text {
      font-size: 2.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    @keyframes backgroundAnimation {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .service-section {
      height: 100vh;
      background: #1974BE;
      color: white;
      text-align: center;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .section-description {
      font-size: 1.2rem;
      margin-bottom: 40px;
    }

    .service-card {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 20px;
      margin: 10px;
      border-radius: 10px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
    }
.service-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
}

.service-card .click-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: #FF6F61;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 5px;
}

    .service-list {
      list-style-type: none;
      padding: 0;
      margin-top: 15px;
    }

    .service-list li {
      text-align: left;
      margin-top: 5px;
    }

    .service-list li:before {
      content: '✔';
      color: #FF6F61;
      margin-right: 10px;
    }

    .work-section {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f9f9f9;
      padding: 20px;
    }

    .work-slider img {
      height: 70vh;
      width: auto;
      object-fit: cover;
      margin: 0 auto;
    }

    .contact-form {
      padding: 40px;
      background-color: #f1f1f1;
      border-radius: 5px;
    }

    .work-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  padding: 20px;
}

.work-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  padding: 20px;
}

.work-slider {
  width: 85%;
  margin: 0 auto;
}

.work-slider .work-slide {
  padding: 10px; /* Añade un espacio alrededor de cada imagen */
}

.work-slider img {
  height: 70vh;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s, box-shadow 0.5s;
}
.work-section .container{
  width: 1500px!important;
}
@media (min-width: 1200px) {
    .work-section .container{
      width: 1500px;
    }
}
.work-slider img:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.slick-prev, .slick-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 1;
}

.slick-prev:hover, .slick-next:hover {
  background-color: #FF6F61;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #1974BE;
}

.slick-dots li.slick-active button:before {
  color: #FF6F61;
  font-size: 16px;
}

.footer {
  background-color: #2B2B2B;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer .logo {
  margin-bottom: 20px;
}

.footer .social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #FF6F61;
}

.footer .contact-info {
  margin-top: 20px;
}

.footer .contact-info p {
  margin: 5px 0;
}

.footer p {
  margin-top: 20px;
  font-size: 0.9rem;
}
/*Modal*/
.modal {
  z-index: 1050 !important;
}

.modal-header {
  border-bottom: none;
  display: flex;
  align-items: center;
}

.modal-header i {
  font-size: 2rem;
  color: #FF6F61;
  margin-right: 10px;
}

.modal-title {
  font-size: 1.8rem;
}

.modal-body ul {
  list-style: none;
  padding-left: 0;
}

.modal-body li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.modal-body li:before {
  content: "✔";
  color: #FF6F61;
  margin-right: 10px;
}
