@charset "utf-8";
/* CSS Document */

        /* Colores principales */
        :root {
            --primary-color: #A2C037;
            --secondary-color: #1F5676;
            --text-color: #333;
            --background-light: #f4f4f4;
            --background-dark: #ffffff;
            --max-width: 1400px;
        }

        /* Estilos generales */
        body {
            font-family: 'Roboto', Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            padding-top: 90px; /* Espaciado para compensar cabecera fija */
        }


        /* Contenedor principal */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Encabezado */
        header {
            background-color: white;
            padding: 25px 20px;
            color: var(--primary-color);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            position: fixed; /* Cabecera fija en la parte superior */
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10; /* Mantener el menú desplegable por encima */
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header img {
            height: 40px;
        }

        /* Menú de navegación */
        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        /* Estilos para el botón del menú en dispositivos móviles */
        .menu-toggle {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--secondary-color);
            cursor: pointer;
			padding: 0 20px;
        }

        /* Estilos para el menú desplegable */
        .nav-links {
            display: flex;
            gap: 20px;
        }

        /* Responsive: Ocultar el menú principal y mostrar el botón en pantallas pequeñas */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 10px;
                background-color: var(--secondary-color);
                position: absolute;
                top: 70px;
                right: 20px;
                padding: 15px;
                border-radius: 8px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
                z-index: 100; /* Asegurar que el menú esté encima del slider */
            }

            .menu-toggle {
                display: block;
            }

            .nav-links.open {
                display: flex;
            }
        }

        /* Slider */
        .slider {
            position: relative;
            width: 100%;
            height: 560px;
            overflow: hidden;
        }

        .slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slider img.active {
    opacity: 1;
}




.overlay-logo {
    position: absolute; /* Allow it to float above the slider */
    top: 375px; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Ensure proper centering */
    z-index: 10; /* Ensure it appears above the slider */
    text-align: center;
    /*width: 300px;*/ /* Adjust logo size */
	width:auto;
    height: auto;
    opacity: 0.9; /* Slight transparency for a better visual effect */
    pointer-events: none; /* Prevent interactions affecting the logo */
}
.overlay-logo img {
width: 350px;
}
.overlay-logo .slide-txt{
	color: #fff;
  font-size: 2rem;
  line-height: 3rem;
  width: 800px;
	text-shadow: #000 1px 0 10px;
	margin-top:35px;
}

@media (max-width: 768px) {
	.overlay-logo .slide-txt{
		width: 350px;
    font-size: 24px;
    line-height: 30px;
	}
}
		
        /* Estilos de secciones */
        .section {
            padding: 40px 20px;
        }

        #contexto {
            background-color: var(--background-dark);
        }

        #reto {
            background-color: var(--background-light);
        }
.reto-contenedor{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /*max-width: 600px;*/
	line-height:1.6;
	text-align: left !important;
}
.reto-zenb{
	font-size: 5rem;
    font-weight: bold;
}
.reto-tit{
	font-weight: 600;
	color: var(--primary-color);
}
        .section h2 {
            color: var(--secondary-color);
            font-size: 1.8em;
            margin-bottom: 20px;
            text-align: left;
        }

        .content-with-image {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .content-with-image img {
            height: auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .content-with-image p {
            line-height: 1.6;
        }

        /* Ajustes para el formato móvil en las secciones de Contexto y Reto */
        @media (max-width: 768px) {
            .content-with-image {
                flex-direction: column;
                text-align: center;
            }
            .content-with-image img {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Lista de objetivos */
        ul {
            /*list-style: disc;*/
			list-style: none;
            padding-left: 20px;
            line-height: 1.8;
			margin-bottom: 20px;
        }
ul li {
	color: #A2C037;
}
ul ul li {
	color: #333 !important;	
}

        ul ul {
            list-style: circle;
			/*list-style: none;*/
            padding-left: 40px;
        }
		.column-content{
			column-count: 2;
  column-gap: 30px;
		}

.icon-number {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: #A2C037; /* Color del fondo del icono */
    color: #fff; /* Color del texto del número */
    border-radius: 50%; /* Hace que el fondo sea redondo */
    font-weight: bold;
    font-size: 14px;
    margin-right: 8px; /* Espaciado entre el número y el texto */
}

		@media (max-width: 768px) {
		.column-content{
			column-count: 1;
			}
		}
.infografia{
	text-align: center;
}
.infografia img{
	width: 60% !important;
}
        /* Consorcio */
        #consorcio ul {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
            padding: 0;
        }

        #consorcio ul li {
            background-color: white;
            padding: 10px 15px;
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
			text-align: center;
        }
#consorcio img{
	/*width: 75%;*/
	width: 60%;
  height: auto;
	vertical-align: middle;
}
ul.com-asesor li img{
	width: 35% !important;
  height: auto;
	vertical-align: middle;
}
#financiacion{
	text-align: center;
	background-color: #f1f1f1;
	line-height: 1.9;
}
#financiacion img{
	max-width:450px;
	height:auto;
}

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            text-align: center;
            padding: 20px;
            /*margin-top: 20px;*/
            position: relative;
        }

        footer p {
            margin: 0;
        }

        /* Botón para ir arriba */
        .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none; /* Oculto por defecto */
    z-index: 1000;
}

.back-to-top.show {
    display: block; /* Muestra el botón cuando se añade la clase */
}
.footer-links {
        margin: 10px 0;
    }
    .footer-links a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }

#linkedin-news {
    background-color: var(--background-light);
    padding: 40px 20px;
    text-align: center;
}

#linkedin-news h2 {
    color: var(--secondary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

/*#news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}*/

.news-item {
    background-color: white;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.news-item h3 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 0.9em;
    color: var(--text-color);
    line-height: 1.4;
}


 form {
            max-width: 400px;
            margin: auto;
        }
        label {
            display: block;
            margin-top: 10px;
        }
        input, textarea {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
        }
        .btn {
            margin-top: 15px;
            padding: 10px;
            background-color: #A2C037;
            color: white;
            border: none;
            cursor: pointer;
            width: 100%;
        }
        .btn:hover {
            background-color: #0056b3;
        }
        .message {
            margin-top: 15px;
            font-weight: bold;
            text-align: center;
        }
        .error {
            color: red;
        }
        .success {
            color: green;
        }
.download-button{
	padding: 10px 20px;
	background-color: #A2C037;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.download-button:hover{
	background-color: #1F5676;
}
#contacto{
	background-color: #A2C037;
	color: #fff;
	text-align: center;
}
#contacto h2{
	text-align: center;
	color:#fff;
}
#contacto p{
	margin-bottom: 20px;
	font-size:24px;
}
.contact-button{
	padding: 10px 20px;
	background-color: #1F5676;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
figcaption {
  font: italic smaller sans-serif;
  padding: 3px;
  text-align: center;
}
#normal ul,
#normal ul li{
	color:#333 !important;
	list-style: disc;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none;
    z-index: 1000;
}

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-button {
    background-color: #A2C037;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.cookie-button:hover {
    background-color: #45a049;
}

.cookie-popup a {
    color: #A2C037;
    text-decoration: underline;
}

.cookie-popup a:hover {
    text-decoration: underline;
}

/* TABLA*/
 .tabla-container {
           max-width: 1400px;  /* Máximo ancho */
            margin: 0 auto;  /* Centrada vertical y horizontalmente */
            overflow-x: auto;  /* Permite desplazamiento horizontal si es necesario */
            background: white;
            /*padding: 0 20px;*/
        }
        table {
            width: 100%;
            border-collapse: collapse;
           
        }
        th, td {
            border: 1px solid #d2e3c9;
            padding: 10px;
            text-align: center;
        }
        th {
           /* background-color: #f2f8ea;*/
        }
        td {
         /*   background-color: #f6f9f1;*/
        }

/*.tabla-container table tbody tr:nth-child(impar) {
	background: #ffffff;
	background-color: #ffffff !important;
}*/

table tbody tr:nth-child(odd) {
	background: #f6f9f1;
}
table tbody tr:nth-child(even) {
	background: #ffffff;
}
        .empresa-logo {
            max-width: 100px !important;
            height: auto;
        }
        .icono {
            width: 25px !important;
            height: auto;
        }
        @media (max-width: 768px) {
			 .tabla-container {
                padding: 10px;
            }
            .tabla-container {
                padding: 10px;
            }
            table, thead, tbody, th, td, tr {
                display: block;
                /*width: 100%;*/
            }
            thead {
                display: none; /* Oculta los encabezados en móviles */
            }
            tr {
                margin-bottom: 10px;
                border: 1px solid #d2e3c9;
                border-radius: 10px;
                padding: 10px;
                background-color: #f6f9f1;
            }
            td {
                display: flex;
                justify-content: space-between;
                padding: 8px;
                border: none;
                font-size: 14px;
				border-bottom: 1px solid #d2e3c9;
            }
            td::before {
                content: attr(data-label);
                font-weight: bold;
                color: #333;
            }
            .icono {
                width: 20px;
            }
            .empresa-logo {
                max-width: 60px;
            }
        }
/* FIN TABLA*/