@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,600,600italic");

/* Reset */
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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: "Poppins";
	vertical-align: baseline;
}

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

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

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

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */
html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 14pt;
	font-weight: 300;
	line-height: 1.65em;
	color: #474747;
	padding-bottom: 45px;
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

a {
	-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
	color: #337963;
	text-decoration: none;
	border-bottom: dotted 1px;
}

a:hover {
	color: #2d5f4f;
	border-bottom-color: transparent;
}

strong, b {
	font-weight: 600;
}

em, i {
	font-style: italic;
}

p, ul, ol, dl, table, blockquote {
	margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
	color: inherit;
	font-weight: 600;
	line-height: 1.75em;
	margin-bottom: 1em;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

h2 {
	font-size: 1.5em;
	letter-spacing: -0.025em;
	padding: 0.1;
	border-bottom: 4px solid #2d5f4f;
	position: relative;
}

h2:after {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 50px;
	height: 4px;
	background: #68a390;
}

h3 {
	font-size: 1.2em;
	letter-spacing: -0.025em;
}

/*New design */

.hero-image-container {
	width: 100%;
	height: 300px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	margin: 2em 0;
	position: relative;
}

.hero-image-container .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(132, 141, 133, 0.281), rgba(32, 95, 55, 0.205)); 
	pointer-events: none;
	z-index: 1;
}

.hero-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	filter: brightness(1.05) contrast(1.02) saturate(0.8); 
	transition: transform 0.3s ease; 
}

.cta-buttons {
	display: flex;
	gap: 1em;
	margin-top: 1.5em;
	flex-wrap: wrap;
}

.cta-buttons .button {
	flex: 1;
	min-width: 200px;
	text-align: center;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5em;
	margin: 2em 0;
}

.feature-card {
	background: #f9f9f9;
	padding: 1.5em;
	border-radius: 8px;
	border-left: 4px solid #68a390;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-card h4 {
	color: #2d5f4f;
	margin-bottom: 0.5em;
	font-size: 1.1em;
}

.feature-card p {
	margin: 0;
	font-size: 0.9em;
	color: #666;
}

@media screen and (max-width: 768px) {
	.hero-image-container {
		height: 180px;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons .button {
		width: 100%;
	}
}

/*Bottom bar*/ 

/* Fixed bottom bar */
#powered-by-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(246, 255, 250, 0.685);
    color: rgb(3, 3, 3);
    text-align: right;
    padding: 1px 30px;
    font-size: 0.6em;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#powered-by-bar a {
    color: #283d37;
    text-decoration: none;
    font-weight: 600;
    border: 0;
}

/* Adjust footer to account for fixed bar */
#footer {
    margin-bottom: 0;
    padding-bottom: 1em;
}

/* Container & Wrapper */
.wrapper {
	padding: 4em 0;
	background: white;
}

.wrapper.style1 {
	background: #fff;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Content Header */
article header {
	margin-bottom: 2em;
}

article header h2 {
	font-size: 2em;
	font-weight: 200;
	color: #2F4F4F;
	margin-bottom: 0em;
}

article header p {
	font-size: 1.1em;
	color: #666;
	line-height: 1.75;
}

/* Map Container */
.map-wrapper {
	width: 100%;
	height: 600px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	position: relative;
	margin: 2em 0;
}

#map {
	width: 100%;
	height: 100%;
}

/* Map Controls */
.map-controls {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	min-width: 200px;
}

.control-label {
	font-size: 0.75em;
	color: #555;
	margin-bottom: 6px;
	display: block;
	font-weight: 500;
}

.control-group {
	margin-bottom: 12px;
}

select {
	width: 100%;
	padding: 8px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	font-size: 0.85em;
	cursor: pointer;
	background: white;
}

select:focus {
	outline: none;
	border-color: #2d5f4f;
}

/* Row System */
.row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	align-items: stretch;
}

.row > * {
	box-sizing: border-box;
}

.row > .col-3 {
	width: 25%;
}

.row > .col-4 {
	width: 33.33333%;
}

.row > .col-6 {
	width: 50%;
}

.row > .col-8 {
	width: 66.66667%;
}

.row > .col-12 {
	width: 100%;
}

.row.gtr-200 {
	margin-top: -100px;
	margin-left: -100px;
}

.row.gtr-200 > * {
	padding: 100px 0 0 100px;
}

/* Header */
#header {
	position: relative;
	text-align: center;
	padding: 1em 0 0 0;
	background: 
		linear-gradient(to right, #7296713b 0%, #fdf9f9c0 50%, #4d554c44 100%),
		linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0));
	background-position: top left, top left, top left;
	background-size: 100% 6em, 100% 6em, auto;
	background-repeat: no-repeat, no-repeat, repeat;
	position: relative;
	z-index: 10;
}

#header h1 {
	display: inline-block;
	padding: 0 0 0.5em 0;
	margin: 0;
}

#header h1 a {
	font-size: 2.3em;
	font-weight: 500;
	color: #2d5f4f;
	text-decoration: none;
	letter-spacing: -0.5px;
	border: 0;
}

#header h1 span,
#header h1 img {
	display: none;
}

#header h1 em {
	font-weight: 100;
	font-size: 1em;
	color: #107526;
	font-style: normal;
}

/* Logo in top right */
.header-logo {
	position: absolute;
	top: 5px;
	right: 60px;
	height: 60px;
	width: auto;
	display: block;
}

/* Nav */
#nav {
	cursor: default;
	background-color: #184b2b;
	padding: 0.4;
	position: relative;
	z-index: 10;
}

#nav:after {
	content: '';
	display: block;
	width: 100%;
	height: 0.5em;
	background-color: #809e87;
}

#nav > ul {
	margin: 0;
}

#nav > ul > li {
	position: relative;
	display: inline-block;
	margin-left: 1em;
}

#nav > ul > li a {
	color: #c0c0c0;
	text-decoration: none;
	border: 0;
	display: block;
	padding: 1.5em 0.5em 1.35em 0.5em;
}

#nav > ul > li:first-child {
	margin-left: 0;
}

#nav > ul > li:hover a {
	color: #fff;
}

#nav > ul > li.current {
	font-weight: 600;
}

#nav > ul > li.current:before {
	-moz-transform: rotateZ(45deg);
	-webkit-transform: rotateZ(45deg);
	-ms-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	width: 0.6em;
	height: 0.6em;
	content: '';
	display: block;
	position: absolute;
	bottom: -0.3em;
	left: 50%;
	margin-left: -0.375em;
	background-color: #809e87;
}

#nav > ul > li.current a {
	color: #fff;
}

#nav > ul > li > ul {
	display: none;
}

/* Dropotron */
.dropotron {
	background-color: #333;
	border-radius: 5px;
	color: #fff;
	min-width: 10em;
	padding: 1em 0;
	text-align: center;
	box-shadow: 0 1em 1em 0 rgba(0, 0, 0, 0.5);
	list-style: none;
}

.dropotron > li {
	line-height: 2em;
	padding: 0 1.1em 0 1em;
}

.dropotron > li > a {
	color: #c0c0c0;
	text-decoration: none;
	border: 0;
}

.dropotron > li.active > a, 
.dropotron > li:hover > a {
	color: #fff;
}

.dropotron.level-0 {
	border-radius: 0 0 5px 5px;
	font-size: 0.9em;
	padding-top: 0;
	margin-top: -1px;
}

/* Footer */
#footer {
	background: #15472b;
	color: rgba(255,255,255,0.5);
	padding: 1em 0 2em 0;
	margin-top: 3em;
}

#footer a {
	color: inherit;
	border-bottom-color: rgba(71, 71, 71, 0.25);
}

#footer a:hover {
	color: #fff;
	border-bottom-color: transparent;
}

#footer .container {
	margin-bottom: 2em;
}

.copyright {
	text-align: center;
	padding: 0em 0 0 0;
	color: #999;
	margin-top: 2.5em;
	font-size: 0.9em;
}

.copyright ul.menu {
	list-style: none;
}

.copyright ul.menu li:first-child {
	border-left: 0;
}

.copyright a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
}

/* Forms */
input[type="text"],
input[type="email"],
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: border-color 0.2s ease-in-out;
	-webkit-transition: border-color 0.2s ease-in-out;
	-ms-transition: border-color 0.2s ease-in-out;
	transition: border-color 0.2s ease-in-out;
	background: #fff;
	border: solid 1px #e0e0e0;
	border-radius: 5px;
	color: inherit;
	display: block;
	outline: 0;
	padding: 0.75em;
	text-decoration: none;
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	border-color: #2d5f4f;
}

input[type="text"],
input[type="email"] {
	line-height: 1em;
}

label {
	display: block;
	color: inherit;
	font-weight: 600;
	line-height: 1.75em;
	margin-bottom: 0.5em;
}

/* Button */
input[type="submit"],
button,
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	border-radius: 5px;
	background-color: #2d5f4f;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	padding: 0 1.5em;
	line-height: 2.75em;
	min-width: 9em;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: -0.025em;
}

input[type="submit"]:hover,
button:hover,
.button:hover {
	
	color: #fff !important;
}

input[type="submit"]:active,
button:active,
.button:active {
	color: #fff;
}

.button.alt {
	background-color: #555555;
	color: #fff;
}

.button.alt:hover {
	background-color: #626262;
}

.button.alt:active {
	background-color: #484848;
}

/* Lists */
ul.links {
	list-style: none;
	padding-left: 0;
}

ul.links li {
	line-height: 2.5em;
	padding-left: 0;
}

ul.menu {
	list-style: none;
	padding-left: 0;
}

ul.menu li {
	border-left: solid 1px #e0e0e0;
	display: inline-block;
	padding: 0 0 0 1em;
	margin: 0 0 0 1em;
}

ul.menu li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

ul.actions {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	cursor: default;
	list-style: none;
	margin-left: -1em;
	padding-left: 0;
}

ul.actions li {
	padding: 0 0 0 1em;
	vertical-align: middle;
}

/* Image */
.image {
	border: 0;
	display: inline-block;
	position: relative;
	border-radius: 5px;
}

.image img {
	display: block;
	border-radius: 5px;
}

.image.featured {
	display: block;
	margin: 0 0 2em 0;
}

.image.featured img {
	display: block;
	width: 100%;
}

/* Sidebar Section */
section {
	margin-bottom: 2em;
}

section h3 {
	margin-bottom: 1em;
}

section footer {
	margin-top: 1em;
}

/* Responsive */
@media (max-width: 768px) {
	.map-wrapper {
		height: 500px;
	}

	.map-controls {
		top: 10px;
		right: 10px;
		min-width: 160px;
		padding: 12px;
	}

	#nav {
		position: static;
		padding: 1em 2em 0 2em;
	}

	#nav ul li {
		display: block;
		margin: 0.5em 0;
	}

	.row > .col-8,
	.row > .col-4 {
		width: 100%;
	}
}

/* Mobile Navigation */
#navPanel, #titleBar {
	display: none;
}

@media screen and (max-width: 840px) {
	html, body {
		overflow-x: hidden;
	}

	body, input, select, textarea {
		font-size: 13pt;
	}

	/* Header en móvil - integrado con hamburguesa */
	#header {
		display: block;
		padding: 0.3em 0;
		position: relative;
		min-height: 50px;
	}
	
	#header h1 {
		padding: 0.6em 70px 0.2em 70px;
		text-align: center;
	}
	
	#header h1 a {
		font-size: 1.5em;
		
	}
	
	/* Logo visible en móvil */
	.header-logo {
		display: block !important;
		position: absolute;
		top: 3px;
		right: 10px;
		height: 44px;
		width: auto;
		z-index: 101;
	}
	
	/* Ocultar navegación desktop */
	#nav {
		display: none;
	}

	#page-wrapper {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		padding-bottom: 1px;
		padding-top: 0;
	}

	/* Botón hamburguesa DENTRO del header */
	#titleBar {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		position: absolute;
		top: 3px;
		left: 10px;
		height: 44px;
		width: 44px;
		z-index: 101;
		background: transparent;
	}

	#titleBar .title {
		display: none;
	}

	#titleBar .toggle {
		text-decoration: none;
		border: 0;
		height: 44px;
		width: 44px;
		position: relative;
		z-index: 102;
		background: rgba(45, 95, 79, 0.95);
		border-radius: 6px;
		box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	}

	#titleBar .toggle:before {
		content: '\f0c9';
		display: block;
		height: 44px;
		line-height: 44px;
		text-align: center;
		width: 44px;
		color: #000000;
		opacity: 0.95;
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		font-size: 16px;
	}

	#titleBar .toggle:active {
		background: rgba(45, 95, 79, 1);
	}

	#titleBar .toggle:active:before {
		opacity: 1;
	}

	/* Panel de navegación */
	#navPanel {
		background-color: #08421bab;
		box-shadow: inset -1px 0 3px 0 rgba(0, 0, 0, 0.5);
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transform: translateX(-275px);
		-webkit-transform: translateX(-275px);
		-ms-transform: translateX(-275px);
		transform: translateX(-275px);
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		height: 100%;
		left: 0;
		overflow-y: auto;
		position: fixed;
		top: 0;
		width: 275px;
		z-index: 10002;
	}

	#navPanel .link {
		border-bottom: 0;
		border-top: solid 1px rgba(255, 255, 255, 0.05);
		color: #888;
		display: block;
		height: 48px;
		line-height: 48px;
		padding: 0 1em 0 1em;
		text-decoration: none;
	}

	#navPanel .link:first-child {
		border-top: 0;
	}

	#navPanel .link.depth-0 {
		color: #fff;
	}

	body.navPanel-visible #page-wrapper {
		-moz-transform: translateX(275px);
		-webkit-transform: translateX(275px);
		-ms-transform: translateX(275px);
		transform: translateX(275px);
	}

	body.navPanel-visible #titleBar {
		-moz-transform: translateX(275px);
		-webkit-transform: translateX(275px);
		-ms-transform: translateX(275px);
		transform: translateX(275px);
	}

	body.navPanel-visible #navPanel {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	#footer {
		text-align: center;
	}
}

@media screen and (max-width: 736px) {
	body, input, select, textarea {
		font-size: 11pt;
		line-height: 1.35em;
	}

	h2 {
		font-size: 1.25em;
	}

	.wrapper {
		padding: 2em 0 1px 0;
	}
}

@media screen and (max-width: 480px) {
	.wrapper {
		padding: 2em 20px 1px 20px;
	}

	#footer {
		padding: 2em 20px;
		text-align: left;
	}
}