@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/bellarina');



.montserrat {
    font-family: "Montserrat", sans-serif;
};

.bellarina{
    color: red;
    font-family: 'Bellarina', sans-serif;
};

.custom-card .card-img-overlay h5 {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* Mostrar h5 al hacer hover en la tarjeta específica */
.custom-card:hover .card-img-overlay h5 {
    opacity: 1;
  }

  /* Opcional: Añadir una transición suave al color de fondo del overlay en el hover */
.custom-card:hover .card-img {
    filter: blur(2px);
    transition: filter 0.3s ease;
}



.carouselExampleControls{
    padding:0%;
}



/* testimonios */

.quote-mark {
    color: #993333;
    font-size: 48px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 1rem;
    height: 100%;
}

.star-rating {
    color: #ffd700;
    font-size: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #993333;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.client-name {
    color: #993333;
    font-weight: bold;
    margin-bottom: 0;
}

.client-title {
    color: #666;
    font-size: 0.9rem;
}

/* Contacto */

.contact-container {
    max-width: 400px;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .contact-item a:hover {
    color: #666;
  }

  .social-links {
    display: flex;
    gap: 8px;
  }

  .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer */

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 1rem;
    font-family: "Montserrat", sans-serif;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-logo {
    flex: 1;
    max-width: 100px;
  }

  .footer-logo img {
    width: 100%;
    height: auto;
  }

  .footer-nav {
    flex: 1;
  }

  .footer-heading {
    font-size: 1rem;
    
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  .footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .footer-links a:hover {
    opacity: 0.8;
  }

  .social-icons {
    display: flex;
    gap: 1rem;
  }

  .social-icons a {
    color: white;
    text-decoration: none;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-logo {
      margin-bottom: 2rem;
    }

    .social-icons {
      justify-content: center;
    }
}

@keyframes show {
    from {
        opacity: 0;
        scale: 25%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
   }

.img-animation {
    view-timeline-name: --image;
    view-timeline-axis: block;

    animation-timeline: --image;
    animation-name: show;

    animation-range: entry 20% cover 50%;

   }




