/* Estilos generales */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
  }
  
  /* Estilos para el header */
  #header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  #header .logo img {
    max-height: 60px;
  }
  
  #header .navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  #header .navbar ul li {
    display: inline-block;
    margin-left: 20px;
  }
  
  #header .navbar ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
  }
  
  #header .navbar ul li a:hover {
    color: #3498db;
  }
  
  /* Estilos para el botón de WhatsApp */
  .btn-wsp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  .btn-wsp:hover {
    background-color: #128c7e;
  }
  
  /* Estilos para el chatbot */
  .chatbot-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    z-index: 1000;
  }
  
  .chatbot-header {
    background-color: #3498db;
    color: #fff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .chatbot-body {
    padding: 15px;
  }
  
  .chatbot-footer {
    padding: 10px;
    text-align: center;
  }
  
  .chatbot-footer .btn {
    margin: 0 5px;
  }
  
  /* Estilos para la sección de contacto */
  #contact-info {
    background: linear-gradient(135deg, #364765 0%, #2575fc 100%);
    color: white;
    padding: 50px 0;
    border-radius: 20px 0 0 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #d1d1d1;
  }
  
  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 250px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .btn-call {
    background-color: #34c759;
    color: white;
  }
  
  .btn-call:hover {
    background-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .btn-email {
    background-color: #ff9500;
    color: white;
  }
  
  .btn-email:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .contact-info {
    margin-top: 10px;
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .fade-in {
    animation: fadeIn 0.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Media queries para hacer el diseño responsivo */
  @media (max-width: 768px) {
    .btn {
      width: 200px;
      font-size: 16px;
    }
  
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .btn {
      width: 180px;
      font-size: 14px;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  }
  .why-us {
    background-color: white;
    padding: 60px 0;
  }

  .why-us .box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .why-us .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  }

  .why-us .box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    position: relative;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.5s forwards;
  }

  .why-us .box:hover h4 {
    color: #f8f2f2;

  }

  .why-us .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3943ff;
    color: black;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.5s ease-in-out;
    z-index: -1;
  }

  .why-us .box:hover::before {
    clip-path: circle(150% at 50% 50%);
  }

  .why-us .box h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #28a745;
    margin: 10px auto 0;
    opacity: 0;
    animation: fadeInLine 1.5s ease forwards;
    animation-delay: 0.3s;
  }

  /* Animaciones */
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLine {
    0% {
      opacity: 0;
      width: 0;
    }

    100% {
      opacity: 1;
      width: 60px;
    }
  }

  .why-us .box:nth-child(1) h4 {
    animation-delay: 0.3s;
  }

  .why-us .box:nth-child(2) h4 {
    animation-delay: 0.5s;
  }

  .why-us .box:nth-child(3) h4 {
    animation-delay: 0.7s;
  }
  .carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }

  .slick-track {
    display: flex;
    transition: all 0.5s ease;
    position: relative;
    left: 0;
  }

  .slick {
    min-width: 150px;
    margin: 0 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
  }

  .slick img {
    max-width: 100%;
    border-radius: 8px;
  }

  .slick:hover {
    opacity: 1;
    transform: scale(1.05);
  }

  .slick-arrow {
    background-color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .slick-prev {
    left: 10px;
  }

  .slick-next {
    right: 10px;
  }
