@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7f6;
    padding-top: 85px;
}

/* Jaguar fijo en la esquina inferior izquierda */
.jaguar-fijo {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 80px;
    height: auto;
    z-index: 1000;
    pointer-events: none;
}

/* NAVBAR transparente con texto negro y sin fondo sólido */
.navbar {
    background-color: transparent !important;
    backdrop-filter: blur(6px);
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
}

.navbar .container {
    max-width: 1140px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .navbar-brand,
.navbar .navbar-toggler,
.navbar .nav-link {
    color: rgb(0, 0, 0) !important;
    font-weight: 600;
    text-decoration: none;
}

.navbar .navbar-links {
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-link:hover {
    text-decoration: underline;
}

/* Banner imagen */
.banner-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Secciones evento */
section.evento {
    padding: 60px 20px;
    color: white;
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 1140px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.evento h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.evento p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 25px;
}

/* Carousel imagen */
.carousel-item img {
    object-fit: cover;
    height: 350px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Controles del carousel, si luego agregas JS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Colores de fondo para cada sección según tu diseño */

.seccion-uno {
    background: linear-gradient(135deg, #228B22, #00703c);
}

.seccion-dos {
    background: linear-gradient(135deg, #32CD32, #05914e);
}

.seccion-tres {
    background: linear-gradient(135deg, #90EE90, #3bba6c);
}

.seccion-cuatro {
    background: linear-gradient(135deg, #F5FFF5, #43b175);
}

.seccion-cinco {
    background: linear-gradient(135deg, #0b6e3a, #43b175);
}

/* Footer transparente */
.footer-transparent {
    background-color: #006341;
    color: white;
    font-weight: 500;
    text-align: center;
    padding: 1.8rem 1rem;
    user-select: none;
    box-shadow: 0 -4px 14px rgb(0 99 65 / 0.7);
}

.footer-transparent a {
    color: #dbe9ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-transparent a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    section.evento {
        padding: 40px 10px;
    }

    .evento h2 {
        font-size: 2rem;
    }

    .evento p {
        font-size: 1rem;
        max-width: 100%;
    }

    .carousel-item img {
        height: 250px;
    }

    .navbar .navbar-links {
        gap: 1rem;
    }
}
/* Animación al estar activo */
.custom-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg);
    top: 12px;
  }
  
  .custom-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
  }
  
  .custom-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg);
    bottom: 12px;
  }
  
  /* Hover visual */
  .custom-toggler:hover .toggler-line {
    background-color: #43a047;
  }
  .btn-inicio {
    background-color: #1B5E20;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-inicio:hover {
    background-color: #2E7D32;
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(27, 94, 32, 0.3);
  }
  
