.navbar-toggle {
	float: left;
}

.header-bi {
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	margin-top: 8px;
}

.position-relative {
	position: relative;
}

.navbar-toggle span {
	background-color: #fff;
}

.container {
	position: relative
}

body {
	background-color: #f0f0f0;
	width: 100%;
	height: 100%;
	font-family: 'Cabin', sans-serif;
	font-size: 16px;
}

header {
	background: #fff;
	margin: 0px;
	padding: 30px 0 15px;
	font-family: 'Cabin', sans-serif;
	position: relative;
	height: auto;
	z-index: 1000;
}

a {
	color: #fff;
}

a.conBg {
	color: #fff;
	font-weight: bold;
}

a.conBg:hover {
	color: #fff;
}

a:hover {
	color: #D90538;
}

.menu-toggle {
	display: none;
}

/* Header Visibility and Logic */
.header-top-bar {
	display: none;
}

.header-main {
	display: block;
}

.header-mobile-nav {
	display: none;
}

/* Tablet & Mobile Top Bar Languages (> 991px hide it) */
@media only screen and (max-width: 991px) {
	.header-top-bar {
		display: none;
		/* Keep top bar hidden, we use main header stacking */
	}

	.header-main .social-red-box {
		display: none !important;
	}
}

/* Tablet Range (768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.logo-section a img {
		height: 70px;
	}

	.vertical-divider {
		height: 40px;
	}

	.nav-and-tools {
		flex-direction: column;
		align-items: flex-end;
		gap: 15px;
	}

	.header-main .nav-red-bar {
		width: 100%;
	}

	.header-main .lang-selector {
		display: flex !important;
		/* Force visibility */
		justify-content: flex-end;
		width: 100%;
		padding-right: 10px;
	}

	.header-main .nav-red-bar ul li {
		border-right: none;
		margin-bottom: 5px;
	}

	.header-main .nav-red-bar ul li a {
		padding: 5px;
		font-size: 14px;
	}
}

/* Mobile Range (< 768px) */
@media only screen and (max-width: 767px) {
	.header-main {
		display: none !important;
	}

	.header-mobile-nav {
		display: block !important;
	}

	header {
		background: #fff !important;
		padding: 0 !important;
	}

	.header-mobile-nav .navbar-default {
		background-color: #fff;
		border: none;
		border-radius: 0;
		margin-bottom: 0;
	}

	.header-mobile-nav .navbar-brand {
		padding: 0;
		height: auto;
		margin: 0 !important;
		float: none !important;
		display: flex !important;
		align-items: center;
	}

	.navbar-brand-container {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		float: right;
		height: 80px;
		/* Increased room */
		gap: 15px;
		padding-right: 15px;
	}

	.header-mobile-nav .navbar-brand img {
		max-width: 80px;
		max-height: 55px;
		/* Prevent clipping */
		width: auto;
		height: auto;
	}

	.vertical-divider-mobile {
		width: 1px;
		height: 40px;
		background-color: #ccc;
	}

	.header-mobile-nav .navbar-toggle {
		border: none;
		background-color: transparent !important;
		margin-top: 25px;
		/* Re-centered vertically */
		float: left !important;
	}

	.header-mobile-nav .navbar-toggle .icon-bar {
		background-color: #E30638;
		width: 30px;
		height: 3px;
	}

	.header-mobile-nav .navbar-collapse {
		background-color: #BD052E;
		border-top: none;
		width: auto;
		margin-left: -15px;
		margin-right: -15px;
	}

	.header-mobile-nav .navbar-nav>li>a {
		color: #fff !important;
		padding: 15px 20px;
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}
}

/* General Styles for Desktop */
/* --- New Header Layout --- */
.header-main .header-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 20px;
}

.logo-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	width: 100%;
}

.logo-section a img {
	height: 120px;
	width: auto;
}

.vertical-divider {
	width: 1px;
	height: 80px;
	background-color: #ccc;
}

.nav-and-tools {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
}

.header-main .nav-red-bar {
	background-color: #E30638;
	border-radius: 12px;
	padding: 0 30px;
	flex-grow: 1;
	display: flex;
	align-items: stretch;
	min-height: 55px;
	/* Standardized height */
}

.header-main .nav-red-bar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.header-main .nav-red-bar ul li {
	flex: 1;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	border-radius: 8px;

}

.header-main .nav-red-bar ul li:hover {
	background-color: rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.header-main .nav-red-bar ul li:last-child {
	border-right: none;
}

.header-main .nav-red-bar ul li:first-child {
	/*border-left: 1px solid rgba(255, 255, 255, 0.4);*/
}

.header-main .nav-red-bar ul li a {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
}

.tools-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	min-width: 150px;
}

.header-main .social-red-box {
	background-color: #E30638;
	border-radius: 12px;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	width: 100%;
	min-height: 55px;
	/* Matches nav-red-bar */
}

.header-main .social-red-box a {
	color: #fff;
	font-size: 24px;
}

.header-main .lang-selector {
	display: flex;
	gap: 15px;
}

.header-main .lang-selector a {
	color: #E30638;
	font-weight: 900;
	font-size: 1.4rem;
	text-decoration: none;
}

.header-main .lang-selector a:hover {
	color: #000;
}

/* --- Visibility Controls --- */
.header-top-bar {
	display: none;
}

/* Tablet & Mobile Visibility */
@media only screen and (max-width: 991px) {
	.logo-section a img {
		height: 80px;
	}

	.vertical-divider {
		height: 50px;
	}

	.nav-and-tools {
		flex-direction: column;
		align-items: center;
	}

	.header-main .nav-red-bar {
		width: 100%;
	}

	.header-main .nav-red-bar ul {
		flex-wrap: wrap;
	}

	.header-main .nav-red-bar ul li {
		border-right: none;
		margin-bottom: 5px;
	}
}

.contTopHome {
	margin-top: 20px;
}

.contTopHome img {
	width: 100%;
	height: auto;
}

.contenedor {
	margin-top: 60px;
}

.cont {
	font-size: 14pt;
	color: #fff;
}

.proud-col-media {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.posters8m {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0;
	margin-top: 10px;
}

.posters8m a {
    display: block;
    width: calc(50% - 10px);
    text-decoration: none;
}

.posters8m a:first-child {
    margin-right: auto;
}

.posters8m a:last-child {
    margin-left: auto;
}

.posters8m img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #dee2e6;
}

.cont-color1 {
	background: #da0839;
	padding: 20px;
	border-radius: 12px;
}

.cont-color4 {
	background: #a10064 url("../imagenes/bg-raya.png") repeat-x left bottom;
	padding: 20px;
}

.min {
	position: absolute;
}

.minArr {
	right: 20px;
	top: -35px;
}

.minAb {
	right: 20px;
	bottom: -15px;
}

a.posters {
	display: inline-block;
	padding: 12px 25px;
	color: #fff;
	font-family: 'Cabin', sans-serif;
	background: #d90538;
	margin-top: 0;
	text-align: center;
	font-weight: bold;
	border-radius: 15px;
	transition: transform 0.2s, background 0.2s;
	text-decoration: none;
	font-size: 1.1rem;
}

a.posters:hover {
	background: #b3042e;
	transform: scale(1.05);
	color: #fff;
}

div.internacional {
	display: none;
}

.titulo-1 {
	color: #d90538;
	font-weight: 900;
	font-size: 3.5rem;
	text-transform: uppercase;
	margin-top: 0px;
	margin-bottom: 10px;
	line-height: 1;
	letter-spacing: -1px;
}

.btn-posters-descargar {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.btn-posters-descargar a {
    width: calc(50% - 7.5px);
    text-align: center;
    box-sizing: border-box;
}

a.btn-encuesta {
	width: 100%;
	padding: 10px 20px;
	background-color: #f26122;
	color: #fff;
	float: left;
	font-family: 'Cabin', sans-serif;
	background: #f26122 url(http://www.uni-iwd.org/imagenes/bg-raya.png) repeat-x bottom;
	margin-top: 20px;
	text-align: center;
	font-weight: bold;
}

.chicas {
	display: none;
}

a.descarga-claro {
	width: 100%;
	padding: 15px;
	background-color: #f3c15b;
	color: #fff;
	float: left;
	font-family: 'Cabin', sans-serif;
	background: #f3c15b url(http://www.uni-iwd.org/imagenes/bg-raya.png) repeat-x bottom;
	margin-top: 5px;
	margin-bottom: 5px;
	text-align: center;
	font-weight: bold;
}

#contPdf {
	display: none;
}

.contPostIndx {
	padding: 0 10px;
}

.contPostIndx div {
	padding: 0 5px;
}

.contPostIndx img {
	width: 100%;
	height: auto;
	margin-top: 10px;
}

.seccion {
	margin-top: 70px;
}

.contLiksFoot {
	display: block;
	width: 100%;
	height: auto;
	text-align: center;
	padding-top: 25px;
	padding-bottom: 35px;
	margin-top: 30px;
	background: #d90538 url(http://www.uni-iwd.org/imagenes/bg-raya.png) repeat-x bottom;
}

#owl-demo {
	margin-top: 60px;
	padding-bottom: 5px;
	border-bottom: 4px solid #D90538;
}

#owl-demo .item {
	margin: 3px;
}

#owl-demo .item img {
	display: block;
	width: 100%;
	height: auto;
}


/* VIDEO */
.embed-responsive {
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
	background-color: #fff;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background-color: #fff;
}

.embed-responsive-16by9 {
	padding-bottom: 57.25%;
	background-color: #fff;
}

.embed-responsive-4by3 {
	padding-bottom: 75%;
}

.postHome {
	width: 100%;
	height: auto;
	margin: 30px 0 15px;
}

/* SECCION 1 */

.minSec1-1 {
	bottom: -18px;
	left: 10px;
}

.minSec1-2 {
	bottom: -18px;
	right: 10px;
}

.minSec1-3 {
	bottom: -50px;
	right: 10px;
}

.minSec1-4 {
	bottom: -80px;
	right: 10px;
}

.logoPow {
	position: absolute;
	top: 50%;
	margin-top: -130px;
	left: 50%;
	margin-left: -88px;
}

.col-sec1 {
	width: 100%;
	min-height: 50px;
	margin-bottom: 30px;
	position: relative;
}

/* NEW POWERFUL WOMEN REDESIGN */
.pow-grid {
	display: flex;
	flex-wrap: wrap;
}

.pow-header {
	display: flex;
	justify-content: center;
	align-items: center;

	position: relative;
	border-bottom: 8px solid #91cfc4;
	/* Teal line */
	margin-bottom: 40px;
	width: 100%;
}

.pow-header-logo {
	max-width: 200px;
	height: auto;
}

.pow-header-illust {
	height: 120px;
	width: auto;
	position: absolute;
	bottom: 0;
	left: 0;
}

.pow-header-illust-2 {
	height: 120px;
	width: auto;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 10;
}

.pow-card {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
}

.pow-image-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.pow-image-container img {
	width: 100%;
	height: 350px;
	/* Fixed height for uniformity */
	object-fit: cover;
	/* Crop to fill */
	display: block;
}

.pow-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.9);
	padding: 15px;

	/* Account for large font sizes */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pow-name {
	color: #d90538;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 2rem;
	margin: 0;
	line-height: 1.1;
	font-family: 'Oswald', 'Cabin Condensed', sans-serif;
}

.pow-title {
	color: #d90538;
	font-size: 1.5rem;
	margin: 4px 0 0 0;
	line-height: 1.2;
}

.pow-content {
	padding: 20px 15px 20px 20px;
	border-left: 2px solid #d90538;
	flex-grow: 1;
	/* Pushes social buttons to the bottom of the card */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
}

.pow-text {
	color: #333;
	line-height: 1.5;
	margin-bottom: 20px;
	font-family: 'Cabin', sans-serif;
}

.pow-social {
	background-color: #d90538;
	border-radius: 8px;
	display: inline-flex;
	padding: 6px 15px;
	gap: 15px;
	width: fit-content;
	margin-top: auto;
}

.pow-social a {
	color: #fff;
	font-size: 1.8rem;
	text-decoration: none;
}

.pow-social a:hover {
	color: #ffd1dc;
}


@media (max-width: 767px) {
	.pow-header-illust {
		height: 80px;
	}
}


.col-sec1-ment {
	width: 100%;
	margin-bottom: 30px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-ment-top {
	max-width: 350px;
	height: auto;
}

.col-sec1 img {
	text-align: center;
	vertical-align: middle;
}

.col-sec1 img.car {
	width: 100%;
	height: auto;
}

.col-sec1 h2,
.col-sec1 h3 {
	font-size: 100%;
}

.col-sec1 .list-inline {
	font-size: 16pt;
}

.col-sec1 .list-inline a:hover {
	color: #fff;
}

.cntTxt {
	padding: 10px 10px 20px 10px;
	min-height: 170px;
	color: #fff;
	position: relative;
}

.cinta-negra {
	position: absolute;
	top: 10px;
	right: 10px;
	height: 25px;
}

.col-col1,
.col-col2,
.col-col3,
.col-col4 {
	width: 100%;
	min-height: 188px;
	background: #da0839;
	position: relative;
	margin-bottom: 30px;
	padding: 20px;
	color: #fff;
	font-size: 16px;
	border-radius: 12px;
}

.col-col2 {
	background: #91cfc4;
}

.col-col3 {
	background: #f1ac2b;
}



.sind {
	max-width: 100%;
	height: auto;
}

.priContText {
	padding: 20px;
	color: #fff;
}

.priContText ul li a {
	font-size: 24pt;
}

/* SECCION 2 */
.seccion2 h2 {
	margin-top: 0px;

}

.en-recurso-espacio {
	margin-bottom: 30px;


}

.logoMent {
	position: absolute;
	top: 50%;
	margin-top: -85px;
	left: 50%;
	margin-left: -130px;
}

.minSec2 {
	bottom: -28px;
	right: 10px;
}

.linkaSec2 {
	width: 100%;
	height: auto;
	display: block;
	background-color: #F2462E;
	padding: 20px;
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
	border: 0px;
}

button.linkaSec2 {
	background-color: #F87D4C;
}

.linkaSec2:hover {
	color: #fff;
	text-decoration: none;
}

.bloqRed6 {
	padding: 50px 15px 35px;
	width: 100%;
	height: auto;
	display: block;
	background-color: #F2462E;
	position: relative;
	margin-bottom: 20px;
	margin-top: 180px;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.bloqRed6 img {
	position: absolute;
	top: -140px;
	left: -10px;
}

.col2 {
	background-color: #D90538;
}

.imgGraSec2 {
	width: 50%;
	height: auto;
	margin: 0px;
	padding: 0px;
	float: left;
}

.seccion2 .ver-mas-fotos a {
	width: 100%;
	height: 100%;
	display: block;
	background-color: #D90538;
	color: #fff;
	text-align: center;
	padding: 10px;
	text-decoration: none;
	transition: all 1s ease;
	position: relative;
}

.seccion2 .ver-mas-fotos a:hover {
	background: #9e0c2f;
	color: #fff !important;
	/*text-shadow: 1px 1px 6px #fff;*/
	/*box-shadow: 0 4px 16px rgba(217, 5, 56, 1);*/

}

/* SECCION 2 - NUEVO DISEÑO MENTORING */

.seccion2 .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
}

.seccion2 .col-sm-5 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.col-sec1-ment {
	width: 100%;
	margin-bottom: 40px;
	padding-top: 0;
}

.mentoring-how-title {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 10px;
	position: relative;
}

.titulo-ment-red {
	color: #d90538;
	font-weight: 900;
	margin: 0;
	font-size: 2.5rem;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.ment-icon-small {
	height: 100px;
	width: auto;
	position: absolute;
	right: 0PX;
}

.ment-teal-box {
	background: #91cfc4;
	border-radius: 12px;
	padding: 35px;
	color: #fff;
	min-height: auto !important;
	flex-grow: 1;
}

.ment-teal-box p {
	margin-bottom: 25px;
	font-weight: 400;
}

.ment-sub-title {
	font-weight: 700;
	font-size: 1.3rem;
	margin-top: 30px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.ment-red-box {
	background: #d90538;
	border-radius: 15px;
	padding: 40px 45px;
	color: #fff;
	margin-bottom: 50px;
}

.seccion2 .col-sm-7 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.conten-seccion-2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.ment-main-title {
	font-weight: 900;
	font-size: 1.7rem;
	margin: 0;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.ment-sub-main-title {
	font-weight: 400;
	font-size: 1.4rem;
	margin: 5px 0 20px 0;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.ment-tagline {
	font-weight: 700;
	font-size: 0.9rem;
	margin: 20px 0 15px 0;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	opacity: 0.9;
}

.ment-intro,
.ment-goal {
	margin-top: 15px;
	line-height: 1.4;
	font-weight: 400;
}

.ment-icons-middle {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	gap: 50px;
}

.ment-icon-img {
	height: 200px;
	width: auto;
}

.video-ment {
	margin-bottom: 0;
	border-radius: 10px;
	overflow: hidden;
}

/* MENTORING RESOURCES & DOWNLOADS REFACTOR */

.ment-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 20px;
	position: relative;
	height: 150px;
	/* Fixed height for perfect alignment */
	margin-bottom: 20px;
	width: 100%;
}

.ment-section-title {
	color: #d90538;
	font-weight: 900;
	font-size: 3rem;
	margin: 0;
	text-transform: uppercase;
	line-height: 0.9;
}

.ment-header-icon {
	height: 150px;
	width: auto;
	position: absolute;
	top: 0px;
	right: 0px;
}

.ment-header-icon-float {
	height: 150px;
	width: auto;
	position: absolute;
	right: 0px;
	top: 0px;
	/* Align with the header height */
}

.ment-links-box {
	background: #d90538;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
	flex-grow: 1;
	/* Stretch to fill space and push footer down */
}

.ment-links-box a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 10px 0;
	font-weight: 700;
	text-transform: uppercase;
}

.ment-links-box a:hover {
	opacity: 0.8;
	color: #fff;
}

.ment-sep-orange {
	width: 100%;
	height: 3px;
	background-color: #f1ac2b;
	margin: 5px 0;
}

.ment-sep-teal {
	width: 100%;
	height: 3px;
	background-color: #91cfc4;
	margin: 5px 0;
}

.ment-footer-icon {
	width: 200px;
	margin-top: -10px;
}

.ment-pill-link {
	display: block;
	background: #d90538;
	color: #fff;
	text-decoration: none;
	padding: 15px 30px;
	border-radius: 12px;
	margin-bottom: 15px;
	text-align: center;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 1.2rem;
}

.ment-pill-link:last-of-type {
	margin-bottom: 0;
}

.ment-pill-link:hover {
	background: #b3042e;
	color: #fff;
}

/* SECCION 2 - TERMINA */

/* SECCION 3*/
.topSec3 {
	width: 100%;
	height: auto;
}

.munTop {
	margin-top: 20px;
	float: right;
}

.contFb {
	background-color: #3B5999;
	text-align: right;
}

.contDes {
	background-color: #D90538;
	text-align: right;
}

.a100 {
	display: block;
	width: 100%;
	height: 100%;
}

#contPdf {
	float: left;
}

#contPdf img {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.fondo {
	margin-bottom: 10px;
}

.sinPad {
	padding: 0 5px;
}

.fondo img {
	cursor: pointer;
	opacity: 0.5;
	margin: 0px;
}

.fondo1 {
	background-color: #F2462E;
}

.fondo2 {
	background-color: #D90538;
}

.fondo3 {
	background-color: #F87D4C;
}

.fondo4 {
	background-color: #C50537;
}

.imgChic {
	margin-bottom: 10px;
	width: 100%;
	height: auto;
}

/* SECCION 3 - TERMINA */


/* SECCION 4*/

.logoGlobal {
	width: 100%;
	height: auto;
}

.contGlobArriba,
.contGlobAbajo {
	width: 100%;
	position: relative;
	padding: 35px 20px;
	background-color: #c50537;
	font-weight: bold;
	color: #fff;
	margin-bottom: 30px;
	font-size: 12pt;
}

.contGlobAbajo {
	background-color: #2DAAE2;
}

div.contGlobRecursos {
	width: 100%;
	position: relative;
	padding: 15px 20px;
	background-color: #F2462E;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
	font-size: 12pt;
	text-align: center;
}

h3.contGlobRecursos {
	text-transform: uppercase;
	font-size: 2rem;
	position: relative;
	padding: 30px 20px;
	text-align: center;
	color: #fff;
	margin-top: 0px;
	margin-bottom: 20px;
}

div.contGlobRecursos a:hover {
	color: #fff;
	opacity: 0.7;
}

div.conten-poster {
	display: block;
	margin: 0 auto 30px;
	max-width: 100%;
	width: fit-content;
	position: relative;
	cursor: pointer;
}

div.fondoColor {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(161, 0, 100, 0.85);
	/* Deep magenta/pink semi-transparent */
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 100;
	cursor: default;
}

div.fondoColor .row {
	width: 100%;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.en-recurso-espacio {
	padding: 15px 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

div.fondoColor a {
	color: #fff;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.2s;
	width: 100%;
}

div.fondoColor a:hover {
	transform: scale(1.1);
	color: #fff;
}

div.fondoColor span {
	font-family: 'Oswald', 'Cabin Condensed', sans-serif;
	font-weight: 700;
	text-transform: capitalize;
	font-size: 1.2rem;
}

div.fondoColor a span:first-of-type {
	margin-bottom: 5px;
}

div.fondoColor a span:last-of-type {
	margin-top: 5px;
	font-size: 1rem;
	font-weight: 400;
}

img.ico-poster {
	width: 30px;
	height: auto;
}


.mapamundi {
	width: 100%;
	height: auto;
	margin-top: 50px;
}

#map {
	width: 100%;
	min-height: 400px;
	margin-top: 10px;
}

/* SECCION 4 - TERMINA*/


/* SECCION 5 - EMPIEZA */

.logoCommunity {
	width: 100%;
	height: auto;
}

.arrCommu {
	width: 100%;
	height: 150px;
	padding: 20px;
	background-color: #C50537;
	color: #fff;
	margin-top: 30px;
}

.minCommu {
	position: absolute;
	right: 30px;
	top: -10px;
}

.colComun {
	background-color: #E31E25;
	width: 100%;
	min-height: 115px;
	color: #fff;
	padding: 30px 20px 20px;
	margin-top: 30px;
}

.colComun a {
	text-decoration: underline;
}

.colComun a:hover {
	color: #fff;
}

.colComun2 {
	background-color: #f87d4c;
}

.colComun3 {
	background-color: #F2462E;
}

.postSecc5 {
	margin-top: 30px;
	width: 100%;
	height: auto;
}

.imgGraSec5 {
	width: 100%;
	height: auto;
	margin-top: 30px;
}

.imgChi {
	margin-top: 30px;
	float: right;
	cursor: pointer;
}

/* SECCION 5 - TERMINA*/
/* SECCION 6 - EMPIEZA */

/* --- Powerful Women Section --- */
.powerful-women-header {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 30px;
	position: relative;
}

.powerful-women-header img {
	max-width: 150px;
	height: auto;
	margin-bottom: -40px;
	/* Sinks illustrations into the box */
	position: relative;
	z-index: 4;
	/* Behind the box */
}

@media (max-width: 768px) {
	.powerful-women-header img {
		max-width: 80px;
		margin-bottom: -20px;
	}
}

.title-powerful {
	color: #d90538;
	font-weight: 900;
	font-size: 3.5rem;
	text-transform: uppercase;
	margin: 0;
	line-height: 1;
	letter-spacing: -1px;
	padding-bottom: 50px;
	/* Ensures title doesn't touch the box */
	position: relative;
	z-index: 6;
	/* Always on top */
}

@media (max-width: 768px) {
	.title-powerful {
		font-size: 2rem;
		padding-bottom: 30px;
	}
}

.cont-color2 {
	background: #f1ac2b;
	padding: 40px;
	border-radius: 20px;
	margin-top: 0;
	position: relative;
	z-index: 5;
	/* Above illustrations, below title */
}

.cont-color2 p {

	margin-bottom: 20px;
}

.btn-container-right {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

.decorative-orange-line {
	width: 100%;
	height: 10px;
	background-color: #f1ac2b;
	margin-top: 50px;
	margin-bottom: 40px;
	border-radius: 5px;
}

/* --- WE ARE PROUD Section --- */
.title-proud {
	color: #d90538;
	font-weight: 900;
	font-size: 3.5rem;
	text-transform: uppercase;
	margin: 0;
	line-height: 1;
	letter-spacing: -1px;
	padding-bottom: 50px;
	position: relative;
	z-index: 6;
}

@media (max-width: 768px) {
	.title-proud {
		font-size: 2rem;
		padding-bottom: 30px;
	}
}

.proud-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
	align-items: stretch;
}

.proud-col-text {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
}

.proud-col-media {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.img-proud-illustration {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	height: auto;
}

.decorative-teal-line {
	width: 100%;
	height: 10px;
	background-color: #91cfc4;
	margin: 40px 0;
	border-radius: 5px;
}

.program-links-grid {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 50px 0;
}

.program-links-grid a {
	flex: 1;
	min-width: 200px;
	transition: transform 0.3s;
}

.program-links-grid a:hover {
	transform: scale(1.05);
}

.program-links-grid img {
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.decorative-red-line {
	width: 100%;
	height: 10px;
	background-color: #d90538;
	margin: 50px 0;
	border-radius: 5px;
}

.social-footer {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 50px;
}

.social-footer a {
	background-color: #d90538;
	color: #fff;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 1.5rem;
	transition: opacity 0.3s;
}

.social-footer a:hover {
	opacity: 0.8;
	color: #fff;
}

/* --- Frontline Section Refactor --- */
.frontline-grid {
	display: flex !important;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 120px;
	margin-bottom: 80px;
	/* Increased padding */
	align-items: stretch;
	position: relative;
	z-index: 5;
	clear: both;
	min-height: auto;
	/* Ensure it calculates height based on children */
}

.frontline-col-text {
	flex: 1 1 400px;
	min-width: 300px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.frontline-col-text>div {
	flex: 1;
	/* Esto hará que crezca para llenar el contenedor */
}

.frontline-col-videos {
	flex: 1.4 1 500px;
	min-width: 300px;
	display: flex;
	flex-direction: column;
}

.cont-color3 {
	background: #91cfc4;
	padding: 40px 30px;
	border-radius: 30px;
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.frontline-illustration {
	position: absolute;
	top: -120px;
	right: 5%;
	width: 100px;
	z-index: 10;
	pointer-events: none;
}

.video-stack {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* Spreads videos to align with the text box bottom */
	gap: 20px;
	flex-grow: 1;
}

.video-grid-secondary {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	/* Safe space from the main block */
	position: relative;
	z-index: 4;
	clear: both;
}

@media only screen and (max-width: 992px) {
	.frontline-grid {
		flex-direction: column;
	}

	.frontline-col-text {
		order: 1;
	}

	.frontline-col-videos {
		order: 2;
	}

	.frontline-illustration {
		top: -100px;
		right: 5%;
		width: 140px;
	}

	.video-grid-secondary {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 480px) {
	.video-grid-secondary {
		grid-template-columns: 1fr;
	}

	.titulo-1 {
		font-size: 2.5rem;
	}
}

.progress-line-decorative {
	width: 100%;
	height: 8px;
	background-color: #91cfc4;
	margin-top: 40px;
	border-radius: 4px;
}

.cont-pri1 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: stretch;
}

.cont-pri2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: stretch;
}

.margin-extra {
	margin-top: 80px;
}

#contPdf-posters1,
#contPdf-posters2,
#contPdf-posters3,
#contPdf-ig3 {
	display: none;
	margin-bottom: 70px;
}

#recursos-corona {
	display: none;


}

div.afiches-recursos {
	margin-bottom: 20px;
}

.minArr2 {
	right: 20px;
	top: -65px;
}

.minAb2 {
	right: 20px;
	bottom: -40px;
}

.minAb3 {
	right: 20px;
	bottom: -35px;
}

hr.separador {
	height: 2px;
	background: #999
}

hr.separador2 {
	height: 2px;
	background: #999;
	margin-top: 60px;
}

.inline-block {
	display: inline-block;
}

@media only screen and (max-width : 992px) {
	.cont-pri {
		flex-direction: column;

	}

}

.solo-pc {
	margin: auto;
	margin-top: 20px;

}

@media only screen and (max-width : 1199px) {
	.solo-pc {
		display: none;
	}
}

/* SECCION 6 - TERMINA  */

/* RESOURCES SECTION REDESIGN (Section 4) */
.res-header {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-top: 80px;
	margin-bottom: 50px;
	width: 100%;
}

.contGlobRecursos {
	background-color: #D90538;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 2.8rem;
	padding: 15px 60px;
	width: 100%;
	text-align: center;
	margin: 0;
	z-index: 5;
	border-radius: 15px;
	font-family: 'Oswald', sans-serif;
	line-height: 1;
}

.res-header .pow-header-illust {
	height: 160px;
	width: auto;
	position: absolute;
	bottom: 30px;
	/* Positioned from bottom to overlap bar */
	left: 10px;
	z-index: 10;
}



.res-header .pow-header-illust:last-of-type,
.res-header .pow-header-illust-2 {
	left: auto;
	right: 10px;
	height: 180px;
	bottom: -10px;
	/* The girl on the right is taller in the mockup */
	z-index: 10;
}

.res-footer-line {
	width: 100%;
	height: 8px;
	background-color: #D90538;
	margin-top: 50px;
	border-radius: 4px;
}

.conten-poster {
	margin-bottom: 30px;
	transition: transform 0.3s;
}

.conten-poster:hover {
	transform: translateY(-5px);
}

.conten-poster img {

	height: auto;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
	.contGlobRecursos {
		font-size: 1.8rem;
		padding: 12px 30px;
		border-radius: 10px;
	}

	.res-header .pow-header-illust {
		height: 100px;
		top: auto;
	}

	.res-header .pow-header-illust:last-of-type,
	.res-header .pow-header-illust-2 {
		height: 120px;
		bottom: 0px;
	}
}

/* FOOTER */
footer {
	margin-top: 20px;
}

footer p {
	border-top: 1px solid #dedede;
	padding: 10px 0;
	width: 100%;
	font-size: 10pt;
	color: #999;
}

footer p a {

	color: #999;
}

@media only screen and (max-width : 768px) {
	header {
		height: 85px;
	}

	.contTopHome {
		margin-top: 90px;
	}

	ul.nav {
		padding-right: initial;
	}

	.nav li {
		border-right: 0px;
	}

	.nav li a {
		height: initial;
		width: 100%;
	}

	#navbar,
	.contIdio {
		background-color: #D90538;
	}

	.navbar-brand {
		z-index: 999;
	}

}

/* --- Section 3 Redesign --- */
.sec3-lang-nav {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-bottom: 20px;
	padding-right: 15px;
}

.sec3-lang-nav a {
	color: #E30638;
	font-weight: 900;
	font-size: 1.5rem;
	text-decoration: none;
	transition: color 0.2s;
}

.sec3-lang-nav a:hover {
	color: #000;
}

.res-header-v2 {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding: 0 40px;
	position: relative;
	margin-bottom: 0px;
}

.res-header-v2 .illust {
	height: 180px;
	width: auto;
	position: absolute;
	bottom: -45px;
	left: 0px;
	z-index: 10;
}

.res-header-v2 .illust-2 {
	height: 180px;
	width: auto;
	position: absolute;
	bottom: -40px;
	right: 0px;
	z-index: 10;
}

.res-header-v2 .logo-center {
	height: 200px;
	width: auto;
	margin-bottom: 10px;
}

.yellow-divider {
	height: 8px;
	background-color: #F3B533;
	border: none;
	margin: 25px 0;
	border-radius: 4px;
	width: 100%;
}

.action-buttons-row {
	display: flex;
	gap: 20px;
	margin: 30px 0;
	padding: 0 10px;
}

.action-box {
	flex: 1;
	background-color: #D90538;
	color: #fff !important;
	padding: 25px 30px;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none !important;
	transition: background-color 0.2s, transform 0.2s;
}

.action-box:hover {
	background-color: #BD052E;
	transform: translateY(-2px);
	color: #fff !important;
}

.action-content {
	display: flex;
	flex-direction: column;
}

.action-text-main {
	font-weight: 800;
	font-size: 1.6rem;
	text-transform: uppercase;
	line-height: 1.1;
	font-family: 'Oswald', 'Cabin Condensed', sans-serif;
}

.action-text-sub {
	font-size: 1.3rem;
	font-weight: 400;
	margin-top: 5px;
}

.action-icon-fb {
	font-size: 4rem;
	margin-left: 20px;
}

.gallery-row-v2 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 30px 0 60px;
	padding: 0 10px;
}

.gallery-item-v2 {
	flex: 1;
}

.gallery-item-v2 img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1/1;
	object-fit: cover;
}

@media (max-width: 991px) {
	.res-header-v2 .illust {
		height: 140px;
	}

	.res-header-v2 .logo-center {
		height: 110px;
	}
}

@media (max-width: 767px) {
	.action-buttons-row {
		flex-direction: column;
	}

	.res-header-v2 {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.res-header-v2 .illust,
	.res-header-v2 .illust-2 {
		height: 85px;
		position: absolute !important;
		margin-bottom: 0px;
		bottom: -35px;
	}

	.gallery-row-v2 {
		grid-template-columns: repeat(2, 1fr);
	}
}