/* Fuente global */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 80px; /* Ajusta este valor si tu navbar es más alta o más baja */
  }
  
  /* Hover en menú */
  .navbar-nav .nav-link:hover {
    color: #dc2626 !important;
  }


  
/* NAVBAR fija */
.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  }
  
  /* Fondo blanco al estar arriba */
  .navbar-fixed.top {
    background-color: #ffffff;
  }
  
  /* Fondo transparente al hacer scroll */
  .navbar-fixed.scrolled {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  /* Botón festi personalizado y responsivo */
  .btn-festi {
    background: linear-gradient(90deg, #dc2626, #3b82f6, #eab308);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
    white-space: nowrap;
  }
  
  /* Hover animado */
  .btn-festi:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
    color: white;
  }
  
  /* Ajustes de responsividad */
  @media (max-width: 576px) {
    .btn-festi {
      width: 100%;
      padding: 0.75rem 1.25rem;
      font-size: 1rem;
    }
  }

  /* Fondo de sección principal con confeti GIF */
.hero-section {
    background-image: url('../img/confeti_fondo.png');
    min-height: 100vh;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
  }
  
  /* Oscurecer ligeramente el fondo para mejor contraste */
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.4); /* filtro oscuro */
    z-index: -1;
  }
  
  /* Asegura que el contenido quede sobre el fondo */
  .hero-section .container {
    position: relative;
    z-index: 2;
  }
  
  /* Efecto Parallax para sección principal */
@media (min-width: 768px) {
    .hero-section {
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
    }
  }

  /* Parallax solo en pantallas grandes */
@media (min-width: 768px) {
    .hero-section {
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
    }
  }
  
  /* En móviles: mantiene el fondo visible pero sin parallax */
  @media (max-width: 767.98px) {
    .hero-section {
      background-attachment: scroll; /* explícitamente scroll */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
  }

  /* Estilo degradado como el botón para aplicar al texto */
.highlight-festi {
    background: linear-gradient(90deg, #dc2626, #3b82f6, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
  }

  /* Botón con borde personalizado en rojo */
.btn-outline-festi {
    color: #dc2626;
    border: 2px solid #dc2626;
    background-color: transparent;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btn-outline-festi:hover {
    background-color: #dc2626;
    color: #fff;
    transform: scale(1.03);
  }
  
  .img-festi{
    width: 120px;
    height: 49px;
  }
  /* Bordes redondeados suaves para imagen en sección principal */
.rounded-festi {
    border-radius: 1rem;
  }
  
  /* Sección Servicios */
.servicios-section {
    background-color: #f9f9f9;
  }
  
  /* Iconos dentro de cards */
  .icon-wrapper {
    background-color: #fee2e2;
    color: #dc2626;
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  /* Enlace personalizado */
  .servicio-link {
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
  }
  
  .servicio-link:hover {
    text-decoration: underline;
  }

  /* Estilo galería */
.gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
  }
  
  .gallery-img {
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
  }
  
  .gallery-item:hover .gallery-img {
    transform: scale(1.1);
    filter: brightness(0.6);
  }
  
  /* Overlay oculto inicialmente */
.overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    color: white;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  /* Mostrar overlay al hacer hover */
  .gallery-item:hover .overlay-content {
    opacity: 1;
  }

  .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #dc2626;
  }
  
  /* Sección con fondo degradado tipo btn-festi */
.cta-section {
    background: linear-gradient(90deg, #dc2626, #3b82f6, #eab308);
  }

  .footer-section {
    background-color: #111827;
    color: #d1d5db;
  }
  
  .footer-section h5 {
    color: #ffffff;
  }
  
  .footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #f87171; /* rojo suave */
  }
  
  /* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    text-decoration: none;
  }
  