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

/* 0- COMUNES */
/* 1- HEADER */
/* 2- HERO */
/* 3. ODS  */
/* 4. ECOVADIS  */
/* 5. PROYECTOS/ACCIONES  */
/* 6. DESCARGAS  */
/* 7. SOSTENIBILIDAD */



 /* ---------- RESET / UTILITIES ---------- */

    *{box-sizing:border-box}
    html,body{height:100%}
    body{margin:0;background:var(--bg);line-height:1.45;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
    img{max-width:100%;height:auto;display:block}

    h1,h2,h3 {
		margin:0 0 22px 0
	}

	.h2, h2 {
		font-size: 2.5rem;
		text-align: center;
	}

	p {
		margin: 0 0 14px 0;
		font-size: 1.5rem;
		line-height: 1.4em;
	}


::selection {
  background: #000000;
  color: #FFFFFF;
}


body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px; 
  line-height: 1.6; 
  color: #333333; 
  letter-spacing: -0.02em;
}

.mbr-arrow {
    bottom: 48px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
	z-index: 9;
}

.mbr-arrow a {
	background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    display: inline-block;
    height: 46px;
    outline-style: none !important;
    position: relative;
    text-decoration: none;
    transition: all .3s ease-in-out;
    width: 46px;
}

.mbr-arrow a:hover {
	background: rgba(255, 255, 255, 0.5);
	border-radius: 25px;
}

.mbr-arrow a::before {
    content: "\203a";
    display: inline-block;
    font-family: serif;
    font-size: 42px;
    line-height: 1;
    font-style: normal;
    left: 21px;
    position: absolute;
    top: 2px;
    transform: rotate(90deg);
}

.mbr-arrow a:hover::before {
    color: #000;
}




/* PRELOADER */


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .3s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #FFF;
  border-top-color: #006A19;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}




/* ---------- 1.- HEADER ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: all 0.3s ease;
}

header .logo {
    width: fit-content;
}

header .logo img {
  transition: transform 0.3s ease;
}

#top {
	overflow-x: hidden;
}

/* Cuando haces scroll */
header.fijo {
  background-color: #00251b9e;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

header.fijo .logo img {
  transform: scale(0.7);
  transition: all 0.3s ease-in-out;
}

/* HEADER INNER */
header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
}




/* ---------- 2.- MENÚ ---------- */
header nav.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

header nav.main-menu li {
  display: inline-block;
}

header nav.main-menu li a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 18px;
  border-radius: 18px;
  padding: 5px 15px;
  margin-left: 10px;
  color: #FFF;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

header nav.main-menu li a:hover {
  border: 1px solid #fff;
}

/* ---------- 3.- BOTÓN HAMBURGUESA ---------- */
.menu-toggle {
  display: none; /* oculto en desktop */
  background: none;
  border: 0;
  padding: 8px;
  margin-left: 10px;
  cursor: pointer;
  align-items: center;
}

/* hamburguesa */
.hamburger {
  display: inline-block;
  width: 28px;
  height: 20px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* estado abierto (transforma hamburguesa en "X") */
.menu-toggle.open .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* ---------- 4.- RESPONSIVE ---------- */

/* Desktop */
@media (min-width: 992px) {
	
  .menu-toggle { 
	  display: none; 
	}
	
    header nav.main-menu {
    display: block !important;
    position: static;
    background: transparent;
  }
	
  header nav.main-menu ul { display: block; }
  header nav.main-menu li { display: inline-block; margin-left: 0; }
}

/* Mobile / Tablet */
@media (max-width: 991px) {
	
	 header .logo {
        z-index: 9999;
    }
	
.menu-toggle {
    display: flex;
    position: absolute;
    right: 15px;
    top: 15px;
	z-index: 9999;
}

  /* menu oculto por defecto (colapsable) */
  header nav.main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
    z-index: 9998;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 80px 18px 40px 18px;
	opacity: 0;
	margin-top: -60px;
  }

  /* cuando esté abierto */
	header nav.main-menu.open {
		max-height: 750px;
		padding: 90px 18px 40px 18px;
		opacity: 1;
		margin-top: -75px;
	}

  header nav.main-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  header nav.main-menu li { 
	  display: block; 
}

  header nav.main-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 20px;
    margin-left: 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
  }
}

/* ---------- 5.- OCULTAR/mostrar HEADER ---------- */
#site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: all 0.3s ease-in-out;
	padding-top: 15px;

}

#site-header.hide {
  transform: translateY(-100%);
	display: none;
}

#site-header.fijo {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding-top: 0;
	    transition: all 0.3s ease-in-out;
}

/* Aseguro que los enlaces queden visibles */
header nav.main-menu a { color: #fff; text-decoration: none; }







 /* ---------- 2.- HERO  ---------- */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    overflow: hidden;
	margin-top: 0; 
}

/* Overlay para oscurecer únicamente el video / imagen */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); 
    z-index: -1; 
}

/* Video de fondo */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Texto del hero */
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    max-width: 1090px;
    margin: auto;
    display: block;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero p.lead {
    max-width: 940px;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.hero p.lead a {
    text-decoration: underline;
	color:#FFF;
}




/* ---------- 3. ODS  ---------- */

#ods {
    padding: 80px 30px;
	background-color: #f3f3f3;
}

.ods-row {
	margin-top: 30px;
}

.ods-item {
  border-radius: 16px;
  border: 1px solid #ddd;
  padding: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ods-title {
    font-weight: 400;
    margin-bottom: 6px;
    font-size: 1.1rem;
    line-height: 1.2;
    padding-top: 14px;
    min-height: 141px;
}

.ods-title a{
  color:#000;
}

.ods-desc {
    font-size: 1rem;
    line-height: 1.4;
    min-height: 82px;
}

.ods-badge img {
    width: 100%;
    border-radius: 12px 12px 0 0 !important;
    text-align: center;
    margin: auto;
}

#ods .ods-item {
  font-size: 0.9rem;
}

#ods .ods-badge img {
  width: 100%;
  margin: 0 auto;
  display: block;
}


#ods .bloque {
	max-width: 1090px;
    margin: auto;
    text-align: center;
}

/* Desktop: 7 en una fila ocupando 100% */
@media (min-width: 992px) {
  #ods .ods-row > div {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

/* Tablet: 3 por fila */
@media (min-width: 768px) and (max-width: 1255px) {
  #ods .ods-row > div {
    flex: 0 0 25%;
    max-width: 25%;
	margin-bottom: 15px;
  }
}

/* Móvil: 2 por fila */
@media (max-width: 767.98px) {
  #ods .ods-row > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
	
	.ods-title {
		font-size: 16px;
		padding-top: 10px;
		min-height: auto;
	}
		
	.ods-item {
		margin-bottom: 15px;
	}
	
}




/* ---------- 4. ECOVADIS ---------- */

#ecovadis {
    background: #FFF;
    overflow: hidden;
    background-image: url("../images/paneles-saltoki.jpg");
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#ecovadis .col {
    max-width: 820px;
    margin: auto;
    text-align: center;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 30px;
}

#ecovadis .score {
	font-size: 10rem;
	letter-spacing: -0.1em;
	color:#000;
}

#ecovadis .medalla img {
    max-width: 250px;
    margin: auto;
	margin-bottom: 20px;
}

#ecovadis p.small {
    font-size: 1.1rem;
    line-height: 1.6;
}

#ecovadis .logo img {
    mix-blend-mode: darken;
    max-width: 270px;
    margin: auto;
}

#ecovadis-score {
  font-variant-numeric: tabular-nums; /* todos los números ocupan la misma anchura */
}

#ecovadis .score {
  font-size: 10rem;
  letter-spacing: -0.1em;
  color:#000;
}

#ecovadis-score {
  font-variant-numeric: tabular-nums;
}

#ecovadis-score-wrapper {
  font-size: 3rem;
  color: #000;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.05em; 
  font-weight: 600;
  letter-spacing: -0.05em;
}

#ecovadis-score {
  font-variant-numeric: tabular-nums; /* anchura fija */
}

/* Dorado con relieve */

#ecovadis-score-wrapper.gold-score {
    color: #00c72c;
    transition: color 0.4s ease, text-shadow 0.4s ease;
    letter-spacing: -0.05em;
}







    /* ---------- 3 OBJETIVOS (ACORDEONES) ---------- */

#objetivos {
    background-color: #e1fef3;
    padding: 100px 0;
    background-image: url(../images/fondo-verde.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    margin-bottom: 0;
}

#objetivos .bloque {
    max-width: 1090px;
    margin: auto;
    text-align: center;
}

  #objetivos .row {
		padding-top: 60px;
		padding-bottom: 60px;
	}

.accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;

    font-size: 1rem;
    line-height: 1.4;
}

.accordion ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.goals {
	display:grid;
	gap:16px;
	margin-bottom:18px;
}

.goal {
	transition: all 0.3s ease; 
    min-height: 180px;
    position: relative;
    border-radius: 16px;
    border: 1px solid #ddd;
    padding: 12px 24px 60px 24px;
    background: rgba(255, 255, 255, 0.85);
    /* Desenfoque del fondo detrás del elemento */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* para Safari */
    box-shadow: 0 8px 20px rgba(10, 10, 10, 0.02);
}

.goal p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 10px;
	min-height: 170px;
	margin-bottom: 0;
}

.goal h3 {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 6px;
    padding-top: 14px;
    min-height: 82px;
    min-height: 89px;
}

.goal .num {
    font-weight: 300;
    font-size: 2rem;
}

.goal .more {
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: #007f0c;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(11, 107, 95, 0.14);
    border: 1px solid #007f0c;
    font-size: 35px;
    font-weight: 300;
}

.goal .more:hover {
    color: #FFF;
	background-color:  #007f0c;
    border: 1px solid #007f0c;
}




/* Estilos base para que se vea como una tarjeta */
.ods-item {
  background-color: #fff; /* Necesitas fondo para que la sombra se vea */
  border-radius: 12px;    /* Bordes redondeados ayudan al realismo */
  padding: 10px;
  
  /* La magia de la animación */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform; /* Optimización de rendimiento */
}

/* El efecto al pasar el cursor */
.ods-item:hover {
  /* Se mueve 10px hacia arriba */
  transform: translateY(-10px);
  /* Sombra grande y difusa abajo para simular altura */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); 
}









    /* ---------- METRICS ---------- */

#metrics {
    font-size: 34px;
    text-align: center;
    padding: 100px 0;
    min-height: 100vh;
    background-color: #000;
    background-image: url("../images/bosque.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Activa el parallax */
    transition: all 0.3s ease;
}

#metrics h2 {
	color: #FFF;
}
 
#metrics label {
	font-size: 34px;
	display: block;
	color: #FFF;
	line-height: 1.2;
}

#metrics .cifra {
	font-size: 54px;
	font-weight: 600;
	display: block;
}

#metrics .big {
    margin: 0;
    display: flex;
    min-height: 300px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

#metrics .cifra.azul {
	color: #2de9f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

#metrics .cifra.verde {
    color: #4aedac;
    display: flex;
    align-items: center;
    justify-content: center;
}

#metrics label.azul {
	font-size: 34px;
	color: #2de9f8;
}

#metrics .metrics .big.verde {
	box-shadow: 0 0 7px 1px #4aedac, 0 0 7px 1px #4aedac, 0 0 7px 1px #4aedac, 0 0 7px 1px #4aedac;
	padding: 30px;
	border-radius: 18px;
}

#metrics .metrics .big.azul {
	box-shadow: 0 0 7px 1px #2de9f8, 0 0 7px 1px #2de9f8, 0 0 7px 1px #2de9f8, 0 0 7px 1px #2de9f8;
	padding: 30px;
	border-radius: 18px;
}

#metrics .metrics .cifra  {
	font-size: 55px;
}

#metrics .metrics .cifra.verde .small,
#metrics .metrics .cifra.azul .small {
	font-size: 25px;
	padding-left: 15px;
	display: inline-block;
}


#metrics .metrics  .xsmall {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-top: 10px;
	margin-bottom: 0;
	color: #FFF;
	font-style: italic;
}






/* ---------- 3D card effect aplicado a .big ---------- */

/* Contenedor con perspectiva */
#metrics .metrics {
    /* display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; */
	
    height: 100%;
    perspective: 1200px; /* NECESARIO para el efecto 3D */
}

/* Cards (.big) convertidas en tarjetas 3D */
#metrics .big {
    background: rgba(0,0,0,0.35);
    padding: 40px;
    border-radius: 18px;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out, filter 0.3s ease-out;
    backdrop-filter: blur(2px);
	
	margin: 30px;
    max-width: 425px;
}

/* Luz tipo “gloss” en hover */
#metrics .big::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

/* Efecto hover: inclina la card */
#metrics .big:hover {
    transform: rotateX(12deg) rotateY(12deg) scale(1.03);
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.6));
}

/* Activa brillo */
#metrics .big:hover::before {
    opacity: 1;
}

/* Necesario para posicionamiento 3D */
#metrics .big {
    position: relative;
}










 /* ---------- 5. PROYECTOS / ACCIONES  ---------- */

#acciones {
	background-color: #efefef;
	padding: 100px 0;
	min-height: 100vh;
}

 .projects {
		display:grid;
		gap:16px;
}

.project-card {
	min-height:140px;
	border-radius: 18px;
	background:#fff;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.project-card img {
    border-radius: 18px 18px 0 0;
}

.project-card .ficha {
    padding: 25px;
}

    .project-card h3{
		font-weight: 700;
		font-size: 1.3rem;
		line-height: 1.2;
	}

    .project-card p {
		font-size: 1rem;
		line-height: 1.4;
	}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-card .ficha {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.project-card .ver-mas {
    margin-top: auto;
    max-width: fit-content;
    right: 15px;
    position: absolute;
    bottom: 15px;
    background-color: #007f0c;
    border: 1px solid #007f0c;
}

.project-card .ver-mas:hover {
    background-color: #005808;
    border: 1px solid #005808;
}



/* 6. DESCARGAS  */

#descargas {
    background-color: #e1fef3;
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

#descargas p {
    max-width: 940px;
    margin: auto;
    text-align: center;
}

#descargas a.download-item {
	text-decoration: none;
	background-color: #FFF;
	color:#000;
}

#descargas a:hover.download-item {
	text-decoration: none;
	background-color: #efefef;
}

#descargas a.download-link {
  position: relative;
  padding-left: 30px;
}

#descargas a.download-link::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url("../images/download.svg"); /* Verificar ruta */
  background-size: contain;
  background-repeat: no-repeat;
}



    /* ---------- RESPONSIVE ---------- */
    @media (max-width:1000px) {
		.container{padding:18px}
		.ods-list{min-width:600px}
     }

    @media (max-width:640px) {
		
		header .logo {
			position: absolute;
			top: 10px;
		}
		
		header .logo img {
			transform: scale(0.8);
		}
		
		header .header-inner {
			display: block;
			padding: 30px 0;
		}
		
		header.fijo .header-inner {
		  padding: 32px 0;
		}
		
		.hero {
			padding-top: 100px;
			height: auto;
			min-height: 100vh;
		}
		
		.hero h1 {
			font-family: 'Montserrat', sans-serif;
			font-size: 2rem;
			font-weight: 700;
			line-height: 1.1;
			max-width: 1090px;
			margin: auto;
			display: block;
			margin-bottom: 30px;
		}
		
		.hero p.lead {
			max-width: none;
			font-size: 1.2rem;
		}
		
		.mbr-arrow {
			display: none;
		}
		
		#ods {
			padding: 30px 0;
		}
		
		.ods-list{
			min-width:480px
		}
		
		#ecovadis {
			padding-top: 30px;
			padding-bottom: 40px;
			display: flex;
			justify-content: center;
			height: auto;
		}
		
		#ecovadis-score-wrapper {
			font-size: 5rem;
		}
		
		#ecovadis .logo img {
			max-width: 190px;
		}
		
		.ecovadis{
			flex-direction:column;
			align-items:flex-start;
		}
		
		.ecovadis .logo{
			width:100%;
		}
		
		#ecovadis .col {
			max-width: 340px;
			padding: 40px 20px;
    		background-color: #ffffff;
		}
		

		
		#objetivos {
			padding: 30px 0;
		}
		
		#metrics  {
		    height: auto;
			padding: 30px 0;
		}
				
		#metrics .metrics {
			display: block;
		}
		
		#metrics .big {
			margin: 20px;
			padding: 20px !important;
		}
		
		#metrics .cifra.azul {
			line-height: 1.2;
			margin-top: 12px;
		}
				
		#metrics label {
			line-height: 1.2;
		}
		
		#metrics .metrics .big:first-child {
			margin-bottom: 40px;
		}
		
		#proyectos {
			padding: 30px 0;
		}
		
		
		
		.container{
			padding:12px;
		}

		
		.project-card .ficha {
			padding-bottom: 30px;
		}
		
		.project-card .ver-mas {
			left: 30px;
			width: 100% !important;
			position: unset;
			max-width: none;
			margin-top: 10px;
		}
		
		
	}



    /* ---------- Simple reveal animations ---------- */
		/* Estado inicial (oculto) */
		.reveal {
			opacity: 0;
			transform: translateY(100px); /* Ligeramente desplazado hacia abajo */
			transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* TRANSICIÓN RÁPIDA (0.5 segundos) */
		}

		/* Estado final (visible) - Añadido por JavaScript */
		.reveal.visible {
			opacity: 1;
			transform: translateY(0); /* Vuelve a su posición original */
		}



	  
    /* ---------- FOOTER  ---------- */	  
		footer {
		  padding: 18px 0;
		  text-align: center;
		  color: #FFF;
		  background-color: #000;
		  font-size: 1rem;
    	  line-height: 1.4;
		}

		footer a {
		  color: #FFF;
			text-decoration: underline;
		}




/* 7. SOSTENIBILIDAD */

#sostenibilidad  {
    padding: 80px 30px;
	background-color: #FFF;
}

#sostenibilidad .sostenibilidad-row {
	padding-top:  60px;
}

#sostenibilidad .sostenibilidad-row .col {
    padding-top: 30px;
    display: flex;
    align-items: center;
}

#sostenibilidad .sostenibilidad-row .col img {
    max-width: 200px;
    max-height: 160px;
}

#sostenibilidad .bloque-boton {
	text-align: center;
    margin-top: 70px;
}

#sostenibilidad .ver-mas {
    margin-top: auto;
    max-width: fit-content;
    right: 15px;
    bottom: 15px;
    background-color: #007f0c;
    border: 1px solid #007f0c;
}

	  