/*Theme Name: 
Theme URI: www.pixandlab.com
Author: PIX & LAB 
Description: Tema para 
*/

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

/* ============================================
   RESET CSS
   ============================================ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	text-decoration: none;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html, html a {
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

ol, ul {
	list-style: none;
	line-height: 1.5em;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
	--azul-cian: #01889c;
	--azul-profundo: #006074;
	--agua-verde: #15b1a5;
	--celeste: #b8e0e4;
	--naranja: #f28a47;
	--celeste-fondo: #f8fbfc;
	--rethink: "Rethink Sans", sans-serif;
	--roboto: "Roboto", sans-serif;
	
	/* Variables para flecha SVG reutilizables */
	--flecha-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.25 8.45'%3E%3Cpath d='M5.04 0L3.74 1.3l1.25 1.25.8.7H0v1.93h5.79l-.8.72-1.25 1.23 1.3 1.32 4.21-4.23L5.04 0z'/%3E%3C/svg%3E");
}

/* ============================================
   TIPOGRAFÍA BASE
   ============================================ */
body h1 {
	font-family: var(--rethink);
	color: #fff;
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
}
/* ============================================
   HEADER
   ============================================ */
header {
	background-color: #fff;
}
.menu_cgc ul{
	margin-top: 11px;
}
.menu_cgc ul li{
	display: inline-block;

}
.menu_cgc nav ul li a{
	font-size: 17px;
	font-weight: bold;
	font-family: var(--rethink);
	color: var(--azul-cian);
	text-decoration: none;
	padding: 3px 10px;
}
.menu_cgc nav ul li.cgc-cta a{
	color: #fff;
	background-color: var(--azul-profundo);
	border-radius: 20px;
}
.menu_cgc nav ul li.cgc-cta.cgc-cta-2 a{
	background-color: var(--azul-cian);
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
	height: 726px;
	position: relative;
	overflow: hidden;
	padding-top: 60px;
	margin-top: 83px;
}
.hero-overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #01889c;
	mix-blend-mode: multiply;
	z-index: 1; /* Entre el fondo y el contenido */
	pointer-events: none;
}
.parallax {
	background-image: url('img/cgc-home-hero.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
}
.parallax p{
	color: #fff;
}
.parallax h3{
	line-height: 1;
}

.parallax.cgc-objetivos{
	background-image: url('img/cgc-objetivos.jpg');
}
.parallax.cgc-resultado{
	background-image: url('img/cgc-impacto-estructural.jpg');
}
.parallax.cgc-sistema{
	background-image: url('img/cgc-sistema.jpg');
}
.parallax.cgc-contacto{
	background-image: url('img/cgc-contacto.jpg');
}
.parallax.cgc-sistema ul li{
	font-weight: 700;
}
.parallax.cgc-sistema .cgc-cards p{
	text-align: left;
}
.cgc-svg-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.cgc-semicirculo {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.cgc-semicirculo-bg {
	z-index: 1;
	mix-blend-mode: multiply;
}

.cgc-semicirculo-line {
	z-index: 2;
	pointer-events: none;
}

.hero-content {
	position: absolute;
	top: 400px;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	z-index: 10;
	width: 675px;
	padding: 0 20px;
	pointer-events: auto;
}

.hero-section h1 {
	margin-bottom: 60px;
}

body .hero-content ul li {
	font-family: var(--rethink);
	font-size: 21px;
	line-height: 24px;
	font-weight: 500;
	margin-bottom: 35px;
	color: #fff;
}

/* ============================================
   UTILIDADES DE COLOR
   ============================================ */
.color-cian{
	color: var(--azul-cian)!important;
}
.color-celeste {
	color: var(--celeste)!important;
}
.color-naranja {
	color: var(--naranja)!important;
}
.color-azul-profundo{
	color: var(--azul-profundo)!important;
}
.color-agua-verde{
	color: var(--agua-verde)!important;
}
/* ============================================
   LISTAS CON FLECHA SVG
   ============================================ */
.cgc-lista-flecha, .contenido-legal ul, .contenido-legal ol{
	list-style: none;
	padding: 0;
	margin: 0;
}

.cgc-lista-flecha li, .contenido-legal ul li, .contenido-legal ol li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 0.5em;
	line-height: 1.4;
	text-align: left;
	
	/* Variables por defecto */
	--flecha-color: var(--agua-verde);
	--flecha-size: 0.8em;
}

.cgc-lista-flecha li::before, .contenido-legal ul li::before, .contenido-legal ol li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.2em;
	width: var(--flecha-size);
	height: var(--flecha-size);
	background-color: var(--flecha-color);
	
	/* Máscara SVG reutilizando variable */
	mask-image: var(--flecha-svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: var(--flecha-svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}
.cgc-lista-flecha.flecha-h3 li::before{
	top: 0.6em;
}
/* Variantes de color para listas */
.cgc-lista-flecha.azul-cian li { --flecha-color: var(--azul-cian); }
.cgc-lista-flecha.azul-profundo li { --flecha-color: var(--azul-profundo); }
.cgc-lista-flecha.agua-verde li { --flecha-color: var(--agua-verde); }
.cgc-lista-flecha.celeste li { --flecha-color: var(--celeste); }
.cgc-lista-flecha.naranja li { --flecha-color: var(--naranja); }

/* ============================================
   H2 CON FLECHA SVG ANIMADA
   ============================================ */
.cgc-titulo-flecha {
	position: relative;
	padding-left: 50px;
	font-family: var(--rethink);
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
	color: var(--azul-profundo);
	
	/* Variables */
	--flecha-color: var(--agua-verde);
	
	/* Animación entrada */
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease-out forwards;
}
p.cgc-titulo-flecha{
	font-size: 21px;
	line-height: 24px;
	font-weight: 700;
}
.cgc-titulo-flecha::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 40px;
	height: 36px;
	background-color: var(--flecha-color);
	
	/* Máscara SVG reutilizando variable */
	mask-image: var(--flecha-svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: var(--flecha-svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	
	/* Animación entrada flecha */
	opacity: 0;
	transform: translateY(-50%) translateX(-30px);
	animation: slideInFromLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
	animation-delay: 0.2s;
}

/* Variantes de color para títulos */
.cgc-titulo-flecha.azul-cian { --flecha-color: var(--azul-cian); }
.cgc-titulo-flecha.azul-profundo { --flecha-color: var(--azul-profundo); }
.cgc-titulo-flecha.agua-verde { --flecha-color: var(--agua-verde); }
.cgc-titulo-flecha.celeste { --flecha-color: var(--celeste); }
.cgc-titulo-flecha.naranja { --flecha-color: var(--naranja); }

/* Hover opcional */
.cgc-titulo-flecha:hover::before {
	animation: pulseArrow 0.6s ease-in-out;
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInFromLeft {
	0% {
		opacity: 0;
		transform: translateY(-50%) translateX(-30px);
	}
	60% {
		opacity: 1;
		transform: translateY(-50%) translateX(5px);
	}
	100% {
		opacity: 1;
		transform: translateY(-50%) translateX(0);
	}
}

@keyframes pulseArrow {
	0%, 100% {
		transform: translateY(-50%) translateX(0);
	}
	50% {
		transform: translateY(-50%) translateX(8px);
	}
}

/* ============================================
   SECCIONES
   ============================================ */
.cgc-seccion {
	padding-top: 78px;
	padding-bottom: 57px;
}
.cgc-parrafo-izq{
	margin-left: 50px;
}
body p, body ul li{
	font-family: var(--roboto);
	font-size: 16px;
	line-height: 18px;
	color: #1a1a1a;
}
h3{
	font-family: var(--rethink);
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
}
h3.cgc-cita{
	font-style: italic;
	color: var(--agua-verde);
}
.cgc-img-circulo img{
	max-width: 400px;
	height: auto;
}
.cgc-seccion-retos, .cgc-logotipos-clientes{
	background-color: var(--celeste-fondo);
}
.cgc-cards{
	background-color: #EDF7F6;
	border-radius: 40px;
	padding: 42px 30px;
	margin: 0 20px;
	width: 100%;
}
.cgc-cards img{
	margin-bottom: 30px;
}
.cgc-cards h3{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 10px;
}
.cgc-cards h4{
	font-weight: 700;
	font-style: italic;
	font-size: 24px;
}
.cgc-cards-fondo {
	position: relative;
	border-radius: 40px;
	padding: 42px 30px;
	margin: 0 20px;
	color: #fff;
	width: 100%;
}
.cgc-cards-fondo img{
	width: 90px;
	margin: 0 auto 10px;
}
.cgc-sistema .cgc-cards-fondo p{
	text-align: left;
	margin-top: 20px;
}
.cgc-seccion-actores .cgc-cards h3{
	height: 60px;
}
.cgc-seccion-actores ul{
	height: 200px;
}
/* Fondo separado con multiply */
.cgc-cards-fondo::before {
	content: '';
	position: absolute;
	inset: 0; /* top:0; right:0; bottom:0; left:0 */
	background-color: var(--azul-cian);
	mix-blend-mode: multiply;
	border-radius: 40px; /* Mismo radio que el contenedor */
	z-index: 1;
}

/* Contenido por encima del fondo */
.cgc-cards-fondo > *{
	position: relative;
	z-index: 2; /* Mayor que el fondo */
}
.cgc-cards-fondo .cgc-lista-flecha li{
	color: #fff;
}
/* ============================================
   PÁGINAS
   ============================================ */
.cgc-cabecera{
	background: linear-gradient(-45deg,var(--azul-profundo) 0%,var(--azul-cian) 75%,var(--agua-verde) 100%);
	padding-top: 15px;
	padding-bottom: 15px;
}
.cgc-cabecera h1{
	color: #fff;
	display: inline-block;
	margin-bottom: 0;
}
.cgc-seccion-nosotros, .cgc-seccion-junta-directiva, .cgc-seccion-gobierno{
	background-color: var(--celeste-fondo);
}
.cgc-seccion-gobierno .cgc-titulo-flecha::before, .cgc-seccion-representacion .cgc-titulo-flecha::before,.cgc-seccion-nosotros .cgc-titulo-flecha::before, .cgc-seccion-alineacion .cgc-titulo-flecha::before, .cgc-seccion-gobernanza .cgc-titulo-flecha::before{
	top: 25px;
}
.cgc-seccion-junta-directiva img{
	max-width: 100%;
	height: auto;
}
.cgc-seccion-junta-directiva h3{
	color: var(--azul-profundo);
	font-size: 17px;
	font-family: var(--rethink);
	font-weight: 700;
}
.cgc-seccion-junta-directiva h4{
	color: var(--agua-verde);
	font-size: 16px;
	font-family: var(--rethink);
}
.cgc-seccion-junta-directiva h5{
	color: var(--azul-cian);
	font-size: 16px;
	font-family: var(--rethink);
	text-transform: uppercase;
}
.cgc-destacado{
	color: var(--azul-profundo);
	font-weight: 700;
	font-style: italic;
}
.cgc-contacto .contenido-contacto{
	max-width: 650px;
	margin: 0 auto;
}
.cgc-contacto label{
	width: 100%;
	margin-bottom: 7px;
}
.cgc-contacto .campo-contacto, .cgc-contacto .wpcf7-select{
	width: 100%;
	height: 35px;
	background-color: rgba(255,255,255,.8);
	border-radius: 20px;
	padding-left: 15px;
}
.cgc-contacto .cgc-label{
	text-align: left;
	margin-left: 15px;
	font-size: 13px;
	display: block;
	margin-bottom: 4px;
}
.cgc-contacto .cgc-label .cgc-obligatorio{
	color: var(--naranja);
}
.cgc-contacto textarea{
	width: 100%;
	height: 200px;
	background-color: rgba(255,255,255,.8);
	border-radius: 20px;
	resize: none;
}
.cgc-contacto .wpcf7-submit{
	background-color: var(--naranja);
	color: #fff;
	font-weight: bold;
	font-size: 21px;
	font-family: var(--rethink);
	text-transform: uppercase;
	border: none;
	border-radius: 15px;
	padding: 8px 75px;
	margin-top: 15px;
}
.wpcf7-list-item-label a{
	color: var(--naranja);
}
body .wpcf7-spinner{
	display: none;
}
.cgc-info-adicional{
	position: relative;
	color: #fff;
	padding: 20px;
	margin-top: 50px;
}
.cgc-info-adicional::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--azul-cian);
	mix-blend-mode: multiply;
	border-radius: 40px;
	z-index: 1;
}
.cgc-info-adicional .titulo-info-adicional{
	position: relative;
	text-align: center;
	font-weight: bold;
	display: block;
	z-index: 2;
}
.cgc-info-adicional small{
	position: relative;
	text-align: center;
	display: block;
	z-index: 2;
}
.cgc-logotipos-clientes a img{
	max-height: 55px;
	width: auto;
	margin: 0 auto;
}
.wpcf7-response-output{
	color: #fff;
}
footer{
	margin-top: 40px;
	padding-top: 40px;
	padding-bottom: 40px;
	background: linear-gradient(-45deg,var(--azul-profundo) 0%,var(--azul-cian) 75%,var(--agua-verde) 100%);
}
.page-template-plantilla-contacto footer{
	margin-top: 0;
}
footer .seccion-footer strong{
	color: var(--celeste);
	font-size: 21px;
	font-family: var(--rethink);
	display: block;
	margin-bottom: 10px;
}
footer .seccion-footer ul{
	padding-left: 0;
}
footer .seccion-footer ul li{
		font-size: 18px;
		margin-bottom: 7px;
}
footer .seccion-footer ul li a{
	text-decoration: none;
	color: #fff;
	font-family: var(--rethink);
}
footer .seccion-footer ul li a:hover{
	color: var(--celeste);
}
footer .seccion-footer img{
	max-width: 200px;
}
body .offcanvas{
	background-color: var(--celeste);
}
.offcanvas .menu-menu-1-container ul li{
	margin-bottom: 30px;
}
.offcanvas .menu-menu-1-container ul li a{
	font-family: var(--rethink);
	text-decoration: none;
	font-size: 30px;
	color: var(--azul-cian);
	font-weight: 700;
}
.offcanvas .menu-menu-1-container ul li.cgc-cta{
	margin-top: 15px;
}
.offcanvas .menu-menu-1-container ul li.cgc-cta a{
	background-color: var(--azul-cian);
	color: #fff;
	padding: 5px 15px;
	border-radius: 30px;
}
.offcanvas .menu-menu-1-container ul li.cgc-cta.cgc-cta-2 a{
		background-color: var(--azul-profundo);
}
.cgc-btn-mov{
	color: var(--azul-cian);
}
.cabecera-legal{
	margin-top:83px;
	margin-bottom:50px
}
.contenido-legal p{
	line-height: 21px;
}
.contenido-legal h3, .contenido-legal h2{
	color: var(--azul-cian);
	font-family: var(--rethink);
	font-weight: bold;
}
.contenido-legal a{
	color: var(--azul-cian);
	text-decoration: none;
}
/* Código extra temporal */
.cgc-seccion-junta-directiva .col {
    display: flex;
    flex-direction: column;
}

.cgc-seccion-junta-directiva .col > a {
    display: flex;
    align-items: flex-end; /* Esto alinea las imágenes por su BASE */
    min-height: 100px; /* Ajusta este valor según la imagen más alta */
    margin-bottom: 1rem;
}

.cgc-seccion-junta-directiva .col > a img {
    width: 80%; /* Mantiene el ancho actual */
    height: auto; /* Mantiene la proporción */
    margin: 0 auto;
}

@media (max-width: 1199.98px) {
	/* Mostrar overlay */
	.hero-overlay {
		display: block;
	}
	.hero-content{
		width: 100%;
		height: auto;
	}
	/* Ocultar semicírculos */
	.cgc-semicirculo {
		display: none;
	}
	.hero-section{
		margin-top: 0;
	}

}

@media (max-width: 992px) {
	.cgc-img-circulo{
		text-align: center;
	}
	footer .seccion-footer img{
		max-width: 100%;
	}
	.hero-content{
		top: 350px;
	}
}
@media (max-width: 768px) {
	.cgc-img-circulo img {
		max-width: 80%;
		height: auto;
		margin: 20px auto;
	}
	body h1 {
		font-size: 40px;
		line-height: 40px;
	}
	.cgc-seccion {
		padding-top: 50px;
		padding-bottom: 30px;
	}
	.cgc-titulo-flecha {
		padding-left: 40px;
		font-size: 40px;
		line-height: 40px;
	}
	.cgc-titulo-flecha::before{
		width: 35px;
	}
	.cgc-parrafo-izq, .cgc-parrafo-dch{
		margin-left: 40px;
	}
}
@media (max-width: 576px) {
	body .hero-content ul li {
		font-size: 18px;
		line-height: 21px;
	}
	.cgc-seccion {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	footer .seccion-footer{
		text-align: center;
	}
	footer .seccion-footer img{
		max-width: 200px;
	}
}
@media (max-width: 450px) {
	body h1 {
		font-size: 30px;
		line-height: 30px;
	}

	.cgc-titulo-flecha {
		padding-left: 30px;
		font-size: 30px;
		line-height: 30px;
	}
	.cgc-titulo-flecha::before{
		width: 23px;
	}
	.cgc-parrafo-izq, .cgc-parrafo-dch{
		margin-left: 30px;
	}
	h3.cgc-cita{
		font-size: 18px;
	}
	.cgc-lista-flecha.flecha-h3 li::before{
		top: 0.26em;
	}
	header img{
		max-width: 100%;
	}
}