/* ---------------------SECCION HEADER--------------------- */

.main-header {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 3px solid #ddd;
}

.main-header .logo {
	margin-top: 10px;
	margin-bottom: 10px;
}

.header-info li {
	vertical-align: text-bottom;
}

.header-info .btn {
	padding: 10px 20px;
	font-weight: bold;
}

.header-info .btn .fa {
	margin-right: 5px;
}

.header-info li.clearfix h6 {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 500;
}

.header-info li.clearfix .fa {
	margin-top: 15px;
	margin-right: 15px;
	font-size: 30px;
	color: #2C537C;
}


/* ---------------------SECCION HERO--------------------- */

.hero {
	background: linear-gradient(135deg, rgba(80, 178, 244, 0) 0%, rgba(1, 31, 38, 0.53) 100%),
		url('/images/banner_bg.jpg') no-repeat center center/cover;
	color: var(--light-text);
	text-align: center;
	/* padding: 120px 0 20px 0; */
	display: flex;
	align-items: center;
	justify-content: center;
	height: 130vh;
}

.hero h2 {
	font-size: 4em;
	/* Título más grande y moderno */
	margin-bottom: 25px;
	color: #fff;
	font-weight: 700;
}

.hero p {
	font-size: 1.5em;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

.btn {
	display: inline-block;
	background: var(--accent-color);
	color: #fff;
	padding: 15px 35px;
	/* Botón más grande */
	text-decoration: none;
	border-radius: 50px;
	/* Bordes redondeados para un look moderno */
	font-weight: 600;
	font-size: 1.4em;
	letter-spacing: 0.5px;
	transition: background 0.3s ease, transform 0.2s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
	background: #A7A418;
	transform: translateY(-3px);
}



/* ---------------------SECCION QUIENES SOMOS------------------------ */
.intro-about-section {
	margin: 4em auto 0 auto;
}

.nosotros {
	padding-right: 3em;
}

.vision {
	padding-top: .8em;
	padding-left: 4em;
}

.mision {
	padding-top: 2em;
}

.intro-about-section h1 {
	margin-top: 0;
	margin-bottom: 32px;
	font-size: 4vw;
	color: #2C537C;
}

.intro-about-section h3 {
	font-size: 2.5vw;
}

.intro-about-section h4 {
	margin-top: 5px;
	color: #222;
	font-size: 2vw;
}

.intro-about-section p {
	margin-top: 15px;
	margin-bottom: 0;
	color: #222;
	font-size: 1.1vw;
}


/* ---------------------CTA--------------------- */

.CTA {
	background: linear-gradient(to bottom,
			white 0%,
			#6295C2 40%,
			#6295C2 60%,
			white 100%);
	margin-top: -2em;
	height: 70vh;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.CTA h5,
h5 a {
	color: white;
	font-size: 2vw;
}

.CTA h5 a:hover {
	color: white;
}

/* ---------------------SECCION NOVEDADES------------------------ */


.novedades {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	box-sizing: border-box;
}

.grid-container {
	width: 98%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 20px;
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}

.grid-item {
	background-color: #ffffff;
	color: #333;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 1em 0 0 0;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgba(44, 83, 124, 0.75);
	transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
	cursor: pointer;
	border: 1px solid #2c537c41;
	overflow: hidden;
}

.grid-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	background-color: #f0f8ff;
}

.grid-item:hover h3 {
	color: #007bff;
}

.grid-item h3 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #2C537C;
	font-size: 1.6em;
	font-weight: 600;
	letter-spacing: -0.5px;
}

.grid-item .btn {
	display: inline-block;
	background-color: #007bff;
	color: white;
	padding: 10px 15px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	font-size: 0.9em;
	transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
	box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.grid-item .btn:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}



/* ---------------------SECCION CONTACTO--------------------- */

.contacto {
	margin-top: 4em;
}

.contacto h3 {
	margin-top: 1.5em;
	font-size: 3em;
	color: var(--color-primary);
	text-align: left;
	margin-bottom: 1em;
}

.contacto p {
	font-size: 1.2vw;
}

.form-control {
	padding: 14px 20px;
	border-color: #dadada;
}

.form-control:focus {
	border-color: #033363;
}

input[type=text].form-control,
input[type=email].form-control {
	height: 50px;
}

form .btn-secondary {
	background-color: #2C537C;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
	background-color: #000;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
	color: #fff;
}

/* ------- FORMULARIO ------- */

.contact-form-section {
	margin-top: 40px;
	margin-bottom: 40px;
}

.contact-status {
	display: none;
}

.contact-form-section .btn-secondary {
	padding: 8px 20px;
	font-size: 1em;
}

.col-sm-4,
.col-xs-12 {
	padding-left: 0;
}

.gracias{
	margin-bottom: 4vw;
}


/* ---------------------SECCION FOOTER--------------------- */
/* Footer Styles Starts */

.footer {
	display: flex;
	justify-content: space-between;
	padding: 3vw 0;
}

.secciones,
.datos {
	display: flex;
	flex-direction: column;
}

.datos a i {
	font-style: normal;
}

.copyright {
	background-color: #1a1a1a;
}

.copyright h5 {
	margin-top: 37px;
	margin-bottom: 17px;
}

.copyright h6 {
	margin-bottom: 33px;
}

.copyright>.container>.clearfix {
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: 1px solid #313131;
}

.copyright ul {
	margin-left: -3px;
	margin-bottom: 0;
}

.copyright li {
	padding-left: 3px;
	padding-right: 3px;
}

.copyright li+li::before {
	content: "/";
	padding-right: 8px;
}

iframe{
	width: 35%;
}