/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;400;600;800&display=swap');
/* variable */
:root {      
    --alt-font: "Inter", sans-serif;
    --primary-font: "Inter", sans-serif;
    --base-color: #195828;
    --base-color2: #E48716;
    --green: #195828;
    --dark-gray: #1f2220;
    --medium-gray: #828282;
    --very-light-gray: #f7f7f7;
    --color-representativo1: #FAAB01;

    
}

body {
    font-size: 16px;
    line-height: 28px;
}

.text-base-color2 {
    color: var(--base-color2);
  }

/* header */
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
    width: 300px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
    
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active:hover > a {
    background-color: var(--base-color);
    color: var(--white);
}
.navbar .navbar-nav .dropdown .dropdown-menu a i,
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 40px;
    margin-right: 10px;
    width: 40px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover i {
    color: var(--white);
}
header .navbar-brand img { /* tamaño logo */
    max-height: 50px;
}
.navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 18px;
}
/* button */
.btn {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0px;
}
.btn.btn-switch-text.btn-extra-large > span {
    padding: 17px 38px;
    font-size: 17px; 
}
.btn.btn-switch-text.btn-large > span {
    padding: 13px 32px;
    font-size:15px;
}
.btn.btn-switch-text.btn-medium > span {
    padding: 12px 26px;
    font-size:14px;
}
/* heading */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}
/* Text gradient color */
.text-gradient-light-green-white {
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%,  #ebf6ee 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Background color */
.bg-light-green {
    background-color: #c4e7cc;
}
.bg-very-light-green {
    background-color: #ebf3ed;
}
/* Transparent background color */
.bg-gradient-green-transparent {
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%,  #ebf3ed 100%);
}

.right-210px {
  right: 210px;
}

/* page title */
.page-title-large h1 {
    font-size: 4.2rem;
    line-height: 4rem;
}
.page-title-large h2 {
    font-size: 18px;
}

/* Border color */
.border-color-dark-green {
    border-color: var(--green);
}
/* Subcribe style 02 */
.newsletter-style-02 .btn:hover {
    background-color: var(--green);
}
.newsletter-style-02 .btn {
    height: 85%;
    margin: 4px;
    padding: 5px 20px 5px;
}
.newsletter-style-02 input {
    padding-right: 75px !important;
}

/* Will change */
.animation-rotation {
    -webkit-animation: rotation 2.5s infinite linear;
}
/* footer */
footer .footer-logo img { /* logo footer */
    max-height: 63px;
    width: auto;
}
footer a:hover {
    color: var(--white);
}
footer ul li {
    margin-bottom: 2px;
}
@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1320px;
    }
}
@media (max-width: 1600px) {
    /* Font size */
    .fs-80 {
        font-size: 4rem;
        line-height: 4rem;
    }
}
@media (max-width: 1199px){
    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        padding: 10px 10px;
    }
}
@media (max-width: 991px){
    /* Background image */
    .md-background-position-top-center {
        background-position: top center !important;
    } 
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
        padding-bottom: 15px;
    }
}
@media (max-width: 767px){
    /* Background image */
    .sm-background-position-top-center {
        background-position: top center !important;
    }
}

.custom-image-icon {
    max-width: 100px;
    height: auto;
}


.images-container {
    background-color: #fff; /* o el color que prefieras */
}

.rounded-custom {
    border-radius: 20px; /* ajusta el valor según necesites */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* sombra suave opcional */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .images-container {
        padding: 15px !important;
    }
}

/* Para asegurar que las imágenes mantengan su proporción */
.images-container img {
    height: 300px; /* ajusta según necesites */
    object-fit: cover;
    width: 100%;
}


/* documentos.html */
.icon-with-text-style-08 {
    background-color: white;
    transition: all 0.3s ease; /* Añade transición suave para todos los cambios */
    transform: translateY(0); /* Posición inicial */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra suave en estado normal */
}

/* Estilo base para el texto y el ícono */
.icon-with-text-style-08 .text-dark-gray {
    color: black;
    transition: color 0.3s ease;
}

/* Efectos al pasar el mouse */
.icon-with-text-style-08:hover {
    background-color:var(--green);
    transform: translateY(-5px); /* Efecto de elevación */
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada en hover */
}

/* Cambio de color del texto e ícono al hover */
.icon-with-text-style-08:hover .text-dark-gray {
    color:var(--very-light-gray) !important; /* Usando !important para asegurar que sobrescriba otros estilos */
}

/* Color rojo para el texto cuando no está en hover */
.icon-with-text-style-08 .feature-box-content span,
.icon-with-text-style-08 .feature-box-icon i {
    color: #195828
}

/* Estilos base del div */
.icon-with-text-style-08 {
    background-color: white;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Estilo base para el texto y el ícono */
.icon-with-text-style-08 .text-dark-gray {
    color: red;
    transition: color 0.3s ease;
}

/* Efectos al pasar el mouse */
.icon-with-text-style-08:hover {
    background-color: orange;
    transform: translateY(-5px);
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Cambio de color del texto e ícono al hover */
.icon-with-text-style-08:hover .text-dark-gray {
    color:var(--very-light-gray) !important;
}

/* opacidad en imagen de fondo */
.overlay-dark {
    position: relative;
}

.overlay-dark:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.overlay-dark > * {
    position: relative;
    z-index: 2;
}

/* footer */
@media (max-width: 767px) {
    .footer-mobile-center {
        text-align: center !important;
    }

    .footer-mobile-center .elements-social,
    .footer-mobile-center p,
    .footer-mobile-center .footer-logo {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .footer-mobile-center .elements-social ul {
        justify-content: center !important;
    }
}

/* Estilos personalizados para el menú full-screen en cirf.css */
.cirf-menu-logo {
    position: absolute;
    top: 30px;
    left: 30%;
    transform: translateX(-50%);
    z-index: 9999;
}

.cirf-menu-logo img {
    max-height: 50px; /* Mantenemos la consistencia con tu header .navbar-brand img */
}

.cirf-menu-social {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 9999;
}

.cirf-menu-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.cirf-menu-social li {
    display: inline-block;
    margin: 0 15px;
}

.cirf-menu-social a {
    color: var(--white);
    font-size: 24px;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.cirf-menu-social a:hover {
    opacity: 1;
}

/* Ajuste del contenedor principal */
.cirf-fullscreen-container .navbar-collapse {
    padding: 120px 0;
}

.download-pei-btn {
    min-width: 250px;
    transition: all 0.3s ease;
}

.download-pei-btn:hover {
    background-color: var(--green) !important;
}

.download-pei-btn:hover span,
.download-pei-btn:hover i {
    color: white !important;
}

.background-section {
    background-image: url('../imagenes/cirf_about.png'); /* Verifica que esta ruta sea correcta */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-btn {
    transition: all 0.3s ease;
    border: 2px solid #fff; /* Asumiendo que el borde es blanco */
}

.video-btn:hover {
    background-color: #2D936C !important; /* Ajusta este color al verde exacto que necesitas */
    border-color: #2D936C !important;
}

.video-btn:hover i,
.video-btn:hover span {
    color: #fff !important;
}

.feature-box-icon {
    display: block;
    width: 100%;
}