@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
    background: #fff;
    color: black;
    font-family: "Poppins", sans-serif;
    display: grid;
    min-height: 100dvh;
    grid-template-rows: auto 1fr auto;
}

/*Diseño Cintillo*/
.top-image {
    width: 100%;
    height: 70px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background-color: #fff;
    display: flex;
}

.top-image img {
    height: 100%;      /* ocupa todo el alto del div */
    width: 350px;       /* mantiene proporción, no se estira */
    object-fit: cover;
    display: block;
    margin-left: 0;    /* alineado a la izquierda */
}
@media screen and (max-width: 500px){
     .top-image img{
        width: 250px;
     }
}
@media screen and (max-width: 400px){
     .top-image img{
        width: 200px;
     }
}
/*Diseño NavBar*/
.header{
    background: linear-gradient(90deg, rgb(4, 131, 23), rgb(0, 100, 0));
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: background 0.3s ease;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 85px;
    padding: 5px 5%;
    font-size: 130%;
    font-family: "League Gothic", sans-serif;
    font-weight: 300;
    font-style: normal;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;    
}
.header .logo{
    cursor: pointer;
    margin-right: auto;
}
.header .logo img{
    height: 75px;  
    width: auto;
    transition: all 0.3s;
}
.header .logo img:hover{
    transform: scale(1.1);
}
.header .nav-links{
    list-style: none;
}
.header .nav-links li{
    display: inline-block;
    padding: 0 10px;
}
.header .nav-links li:hover,
.overlay a:hover{
    transform: scale(1.1);
}
.header .nav-links a{
    font-size: 140%;
    color: #fff;
    position: relative;
    padding: 8px 12px;
}
.header .nav-links li a:hover{
    color: rgb(255, 255, 255);
}
.header .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.header .nav-links a:hover::after {
    transform: scaleX(1);
}
.menu{
    display: none;
}
.header .btn button,
.header .menu button{
    margin-left: 20px;
    font-family: "League Gothic", sans-serif;
    font-size: 140%;
    color: rgb(255, 255, 255);
    padding: 13px 25px;
    background: rgba(0, 255, 42, 0.507);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.header .btn button:hover,
.header .menu button:hover{
    background-color: #fff;
    color: rgba(121, 184, 131, 0.966);
    transform: scale(1.1);
}
/*MediaQuery navBar width*/
@media screen and (max-width:800px){
    .nav-links, .btn{
        display: none;
    }
    .menu{
        display: inherit;
    }
    .dropdown-mobile {
        width: 100%;
        text-align: center;
    }

    /* Submenú móvil cerrado */
    .header .overlay .dropdown-mobile-contenido {
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
    }

    /* Submenú abierto */
    .dropdown-mobile.active .dropdown-mobile-contenido {
        max-height: 500px;
        opacity: 1;
    }

    .header .overlay .dropdown-mobile-contenido a {
        font-size: 20px;
        font-weight: 400;
        color: #ddd;
        padding-left: 20px;
    }

    /* Flecha animada */
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .dropdown-mobile .arrow {
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff; /* color de la flecha */
    transition: transform 0.3s ease;
}
    .dropdown-mobile.active .arrow {
    transform: rotate(90deg);
}

}
/*Nav Responsive*/
.header a{
    text-decoration: none;
}
.header .overlay{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    background-color: rgba(2, 63, 6, 0.95);
    overflow: hidden;
    transition: all 0.3s ease 0s;
}
.header .overlay .overlay-content{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header .overlay a{
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    color: #fff;
}
.header .overlay a:hover, 
.header .overlay a:focus{
    color: rgba(121, 184, 131, 0.966);
}
.header .overlay .close{
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 65px;
}
/*MediaQuery NavBar height*/
@media screen and (max-height:450px){
    .header .overlay a{
        font-size: 20px;
    }
    .header .overlay .close{
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
/*Dropdown Desktop*/
li.dropdown{
    display: inline-block;
    position: relative;
}
.dropdown-contenido {
    display: none;
    position: absolute;
    background-color:rgba(4, 131, 23);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.123);
    z-index: 1;
    top: 100%;
    left: 0;
    font-size: 70%;
}
.dropdown-contenido a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-contenido a:hover {
    background-color: #d6d5d55e;
}
.dropdown:hover .dropdown-contenido {
    display: block;
}
/*Fin de Diseño de NavBar*/

/* Barra de redes sociales lateral */
.social-bar {
    position: fixed;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.social-bar .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Colores de cada red */
.social-bar .instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.social-bar .facebook {
    background: #1877f2;
}

/* Efecto hover */
.social-bar .icon:hover {
    transform: translateX(8px) scale(1.1);
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
}

/*Hero, logo fundeca*/
.hero {
    margin-top: 0px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 5% 10% 8%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.249);
    color: #fff;
    animation: fadeIn 1.5s ease-out;
    background: linear-gradient(90deg, rgb(4, 131, 23), rgb(0, 100, 0));
    border-radius: 0 0 50% 50%;
}
/*
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* El video no bloquea clicks 
    opacity: 0.9;
}*/
.hero-contenido{
    position: relative;
    z-index: 1;
}
.hero .hero-contenido .fundeca{
    font-size: 12rem;
    letter-spacing: 20px;
    animation: slideUp 1.2s ease-out;
    font-family: "League Gothic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
.hero .hero-contenido .fundeca-texto{
    font-size: 1rem;
    animation: slideUp 1.2s ease-out;
    padding: 0 15%;
}
@media screen and (max-width: 800px){
    .hero .hero-contenido .fundeca{
        font-size: 650%;
    }
    .hero .hero-contenido .fundeca-texto{
        font-size: 0.5rem;
    }
}
@media screen and (max-width: 500px){
     .hero .hero-contenido .fundeca{
        font-size: 500%;
     }
}
@media screen and (max-width: 400px){
    .hero{
        padding: 15% 0 15% 0;
    }
     .hero .hero-contenido .fundeca{
        font-size: 300%;
     }
}
@keyframes slideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/*Inicio de estilos de la primera pagina*/
.quienes-somos {
    padding: 50px 10%;
}

.quienes-somos h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #176d2c;
}
.somos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: black;
}

.somos-texto {
    flex: 1;
    font-size: 80%;
    line-height: 1.6;
    text-align: justify;
}

.somos-texto p b {
    color: #9b8507; /* resalta los nombres de proyectos en dorado */
    text-align: justify;
}

.somos-foto img {
    transition: transform 0.4s ease;
    flex: 1;
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.somos-foto img:hover {
    transform: scale(1.05);
}
/* Animaciones Somos */
.animate-left, .animate-right {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.animate-left.show {
    opacity: 1;
    transform: translateX(0);
}

.animate-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Dirección de entrada */
.animate-left {
    transform: translateX(-60px);
}
.animate-right {
    transform: translateX(60px);
}
@media screen and (max-width: 800px) {
    .quienes-somos h2 {
    font-size: 1.5rem;
}
    .somos {
        flex-direction: column;
    }
    .somos-foto img {
        max-width: 100%;
    }
    .somos-texto {
        font-size: 0.7rem;
    }
}
/*Fin de quienes somos*/

/*Estilos Pagina Contacto*/
.contacto {
    width: 100%;
    height: 100%;
}
.card-contacto {
    display: flex;
    flex-direction: row;
    gap: 32px;
    background: linear-gradient(90deg, rgb(4, 131, 23), rgb(0, 100, 0)) ;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 32px;
    margin: 40px auto;
    max-width: 900px;
    align-items: stretch;
}

.card-mapa {
    flex: 1 1 50%;
    min-width: 280px;
    display: flex;
    align-items: stretch;
}

.card-info {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0 16px 16px;
}

.card-info h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 2.7rem;
}

.card-info h3 {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: left;
}

.card-info p {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
}

@media (max-width: 800px) {
    .contacto{
        padding: 5%;
    }
    .card-contacto {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }
    .card-mapa, .card-info {
        min-width: unset;
        padding: 0;
    }
    #map {
        min-height: 220px;
    }
    .card-info h2{
        font-size: 2rem;
    }
    .card-info h3{
        font-size: 1.3rem;
    }
    .card-info p{
        font-size: 0.7rem;
    }
}
/*Fin de estilos de contacto*/
/*filosofia*/
.filosofia-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 5% 5%;
}

.filo-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    gap: 32px;
    padding: 1% 3%;
    margin-right: 10%;
}

.filo-card-reverse {
    flex-direction: row-reverse;
    margin-left: 10%;
    margin-right: 0;
}

.filo-card-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 260px;
    flex: 0 0 240px;
}

.filo-card-img img {
    width: 100%;
    max-width: 220px;
    border-radius: 12px;
    margin-bottom: 12px;
    object-fit: contain;
}

.filo-card-title{
    color: #176d2c;
    margin-bottom: 2%;
    font-size: 2rem;
}

.filo-card-texto p {
    text-align: justify;
    font-size: 1.1rem;
    color: #176d2c;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .filosofia-cards{
        margin: auto;
        padding: 5%;
    }
    .filo-card, .filo-card-reverse {
        flex-direction: column !important;
        gap: 16px;
        align-items: stretch;
        margin: 0;
        padding: 10%;
    }
    .filo-card-img {
        display: none;
    }
    .filo-card-title {
        text-align: center;
        font-size: 1.5rem;
        }
        .filo-card-texto p {
    font-size: 0.7rem;
}
        .animate-left,
    .animate-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/*Fin de diseño de filosofia*/
/*Diseño de Footer*/
.footer {
    background: linear-gradient(90deg, rgb(4, 131, 23), rgb(0, 100, 0));
    color: #fff;
    text-align: center;
    padding: 20px 1%;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.25);
    font-size: 70%;
}
.footer-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.footer-logo {
    height: 100px;
    width: auto;
    flex-shrink: 0;
}

.footer-texto {
    flex: 1;
    text-align: center;
    font-size: 1em;
}

@media (max-width: 800px) {
    .footer-logo {
        height: 32px;
    }
    .footer-contenido {
        gap: 8px;
    }
    .footer-texto {
        font-size: 0.5em;
    }
}
#gdc{
    font-size: 140%;
}
/*Fin de diseño de Footer*/
/*Estilos Pagina Presidente*/
.presidente{
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    margin: 5% 5%;
    padding: 2%;
}
.president-foto h2, h3{
    text-align: center;  
}
.president-foto h2{
    font-size: 2.5rem;
    color: #176d2c;
}
.president-foto h3{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.president-foto img{
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    width: 30%;
    margin-bottom: 30px;
}
.president-informacion{
    width: 80%;
    margin: 20px auto 60px;
    padding: 0 20px;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
}
.president-informacion ol {
    margin: 0 auto;
    padding-left: 1.5rem;
    margin-top: 1%;
    max-width: 600px;
    list-style-position: inside;
    padding: 1rem;
}

.president-informacion li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    text-indent: -0.5rem;
}
@media (max-width: 800px){
    .presidente{
        margin: 5%;
        padding: 5%;
    }
    .president-foto h2{
        font-size: 1.3rem;
    }
    .president-foto h3{
        font-size: 1rem;
    }
    .president-foto img{
        width: 60%;
    }
    .president-informacion{
        width: 100%;
        font-size: 0.7rem;
        margin-bottom: 100px;
    }
    .president-informacion ol {
        padding-left: 1rem;
        margin-top: 2%;
        padding: 0.5rem;
    }
    .president-informacion li {
        margin-bottom: 0.5rem;
        padding-left: 0.3rem;
        text-indent: -0.3rem;
    }
}
/*Fin de estilos de la pagina presidente*/
/*Estilos Pagina Estructura Organizativa*/
.estructura{
    margin: 5% 5%;
    padding: 5%;
    line-height: 1.6;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
#text-estructura{
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.estructura img{
    width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
@media (max-width: 800px){
    .estructura{
        margin-bottom: 40%;
    }
    #text-estructura{
        font-size: 1.5rem;
    }
}
/*Fin de estilos de la pagina estructura organizativa*/
/*Estilos Marco normativo*/
.marconormativo{
    text-align: center;
    margin: 5% 5%;
    margin-bottom: 5%;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.title-marco{
    font-size: 40px;
    padding: 5%;
}
.marconormativo p{
    text-align: justify;
    font-size: 1.2rem;
    margin: 0 5% ;
    padding-bottom: 5%;
}
@media (max-width: 800px){
    .title-marco{
        font-size: 1.5rem;
    }
    .marconormativo p{
        font-size: 0.7rem;
        padding-bottom: 15%;
    }
}
/*Fin de estilos de marco normativo*/
/*Estilos de programas*/
.programas {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    color: black;
    margin: 5% 10%;
}

.card-programas,
.card-programasleft {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    gap: 45px;
    padding: 5%;
    
}

.card-programas h2,
.card-programasleft h2 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 40px;
    color: #176d2c;
}
.card-programas .card-content,
.card-programasleft .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: justify;
}

.card-programas {
    flex-direction: row;
}

.card-programasleft {
    flex-direction: row-reverse;
}
/*carrusel de programas*/
.carrusel-simple {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.carrusel-simple .carrusel-img {
    display: none;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);

}

.carrusel-simple .carrusel-img.active {
    display: block;
}

.carrusel-simple .carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #176d2c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carrusel-simple .carrusel-btn.prev { left: 8px; }
.carrusel-simple .carrusel-btn.next { right: 8px; }
.carrusel-simple .carrusel-btn:hover { background: #128c7e; }
.card-programas-mobile {
    display: none;
}

@media (max-width: 800px) {
    .card-programas,
    .card-programasleft {
        display: none !important;
    }
    .card-programas-mobile {
        display: block;
        margin: 0 20px 18px 20px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.18);
        border-radius: 18px;
        background: #fff;
        padding: 2% 0;
    }
    .card-programas-mobile .card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 8px;
    }
    .card-programas-mobile h2 {
        text-align: center;
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: #176d2c;
    }
    .card-programas-mobile .carrusel-simple {
        width: 80vw;
        max-width: 100vw;
        min-height: 200px;
        height: 30%;
        max-height: 30vw;
        object-fit: cover;
        border-radius: 10%;
    }
    .card-programas-mobile .carrusel-simple img{
        width: 100%;
        height: 50%;
    }
    .card-programas-mobile p {
        font-size: 0.7rem;
        text-align: justify;
        margin-bottom: 8px;
        max-width: 90vw;
    }
}
/* Botones de redes debajo del texto */
.redes-programa {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 18px 0 0 0;
}

.btn-instagram, .btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
    gap: 10px;
}

.btn-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.btn-whatsapp {
    background: #25d366;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #dd2a7b, #f58529, #515bd4, #8134af);
}
.btn-whatsapp:hover {
    background: #128c7e;
}

/* Oculta iconos en desktop, muestra texto */
.btn-icon { display: none; }
.btn-text { display: inline; }

/* Responsive: solo iconos en botones, carrusel más pequeño, botones más pequeños */
@media (max-width: 700px) {
    .carrusel-simple {
        max-width: 98vw;
        min-height: 130px;
    }
    .carrusel-simple .carrusel-img {
        height: 130px;
        border-radius: 10px;
    }
    .carrusel-simple .carrusel-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    .redes-programa {
        gap: 10px;
        margin-top: 12px;
    }
    .btn-instagram, .btn-whatsapp {
        padding: 10px 16px;
        font-size: 1.5rem;
        border-radius: 22px;
    }
    .btn-icon { display: inline; }
    .btn-text { display: none; }
}

/* Responsive para pantallas muy pequeñas */
@media (max-width: 420px) {
    .carrusel-simple {
        min-height: 90px;
    }
    .carrusel-simple .carrusel-img {
        height: 90px;
    }
    .redes-programa {
        gap: 6px;
    }
    .btn-instagram, .btn-whatsapp {
        padding: 8px 10px;
        font-size: 1.2rem;
    }
}
/*Fin de estilos de programas*/
/*Estilos Beneficiarios*/
.beneficiarios-texto {
    color: black;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 5% 5%;
    margin: 5% 5%;
    line-height: 1.7;
    text-align: justify;
}

.beneficiarios-texto h2 {
    text-align: center;
    margin-bottom: 18px;
    font-size: 2rem;
    color: #176d2c;
}

@media (max-width: 800px) {
    .beneficiarios-texto {
        padding: 16px;
        font-size: 0.7rem;
    }
    .beneficiarios-texto h2 {
        font-size: 1.5rem;
    }
}
/*Estilos Carrusel Beneficiarios*/
.carrusel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 25px 0;
}

.carrusel-imagenes {
    width: 80%;
    height: 350px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: contain;
}

.carrusel-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.5s;
    position: absolute;
    left: 0; top: 0;
}

.carrusel-img.active {
    display: block;
    opacity: 1;
    position: relative;
}

.carrusel-btn {
    color: #176d2c;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    margin: 0 12px;
    transition: background 0.2s;
}

.carrusel-btn:hover {
    background: #176d2c;
    color: #fff;
}

@media (max-width: 600px) {
    .carrusel-imagenes {
        height: 180px;
    }
}
/*Fin de estilos carrusel*/
