/* Reset y variables base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
:root {
 --primary-color: #2e7d32;   /* Verde Agro */
 --secondary-color: #1b5e20; /* Verde Oscuro */
 --accent-color: #f57c00;
 --text-color: #333333;
 --bg-light: #f4f6f4;
 --white: #ffffff;
 --border-color: #e0e0e0;
}
body {
	color: var(--text-color);
	line-height: 1.6;
}
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
/* Header & Nav */
.header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 100;
}
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0px 15px 0px;
}
.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	letter-spacing: 0.5px;
}
.logo-img {
	height: 100px;
	width: auto;
	object-fit: contain;
}
.brand-name {
	font-size: 1.4rem;
	font-weight: 700;
	color: #2e7d32;
}
.nav a {
	margin-left: 2rem;
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s;
}
.nav a:hover {
	color: var(--primary-color);
}
/* Botones */
.btn-primary {
	background-color: var(--primary-color);
	color: var(--white) !important;
	padding: 0.7rem 1.4rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
	transition: background-color 0.3s;
}
.btn-primary:hover {
	background-color: var(--secondary-color);
}
.btn-secondary {
	background-color: var(--primary-color);
	color: var(--white) !important;
	padding: 0.7rem 1.4rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
	transition: background-color 0.3s;
}
.btn-secondary:hover {
	background-color: var(--secondary-color);
}
/* Botón Hamburguesa */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 101;
}
.menu-toggle span {
	width: 100%;
	height: 3px;
	background-color: var(--primary-color);
	border-radius: 2px;
	transition: transform 0.75s ease, opacity 0.75s ease;
	transform-origin: left center;
}
.menu-toggle.active span:nth-child(1) {
	transform: rotate(37deg);
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: rotate(-37deg);
}
/* Hero Section */
.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
	color: var(--white);
	text-align: center;
	padding: 7rem 1rem;
}
.hero-content {
	max-width: 800px;
}
.hero h1 {
	font-size: 2.6rem;
	margin-bottom: 1.2rem;
	font-weight: 700;
}
.hero p {
	font-size: 1.15rem;
	margin-bottom: 2.5rem;
	font-weight: 300;
}
.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
/* Servicios */
.services {
	background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('sunny-greenfied.jpg') center/cover no-repeat fixed;
	padding: 5rem 0;
	background-color: var(--bg-light);
}
.services h2 {
	color: var(--white);
}
.section-title {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2rem;
	color: var(--secondary-color);
	font-weight: 700;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}
.services-grid .card {
	background: var(--white);
	padding: 2.5rem 2rem;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.services-grid .card h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
	font-size: 1.25rem;
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 0.5rem;
	display: inline-block;
}
.services-grid .card p {
	font-size: 0.95rem;
	color: var(--text-color);
}
/* Nosotros */
.about {
	padding: 5rem 0;
	background-color: var(--white);
}
.about-content {
	margin: 0 auto;
	text-align: justify;
}
.about-content p {
	font-size: 1.05rem;
	color: #444;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}
/* highlight */
.highlight {
	background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('sunny-greenfied.jpg') center/cover no-repeat fixed;
	padding: 5rem 0;
	background-color: var(--bg-light);
}
.highlight h2 {
	color: var(--white);
}
.highlight-title {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2rem;
	color: var(--secondary-color);
	font-weight: 700;
}
.highlight-content {
	max-width: 1200px;
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	line-height: 1.8;
	color: var(--white);
	text-align: justify;
}
.highlight-content p {
	font-size: 1.05rem;
	color: var(--white);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}
.highlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}
.highlight-grid .card {
	background: var(--white);
	padding: 2.5rem 2rem;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.highlight-grid .card h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
	font-size: 1.25rem;
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 0.5rem;
	display: inline-block;
	width: 100%;
}
.highlight-grid .card p {
	font-size: 0.95rem;
	color: var(--text-color);
}
.highlight-grid .card {
	background: var(--white);
	padding: 2.5rem 2rem;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.highlight-grid ul {
	color: var(--text-color);
	padding: 0 5rem;
}
/* Contacto */
.contact {
	padding: 5rem 0;
}
.contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 4rem;
}
.contact-info h2 {
	font-size: 1.8rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}
.contact-info p {
	margin-bottom: 1.5rem;
	color: var(--text-color);
}
.contact-info ul {
	list-style: none;
}
.contact-info li {
	margin-bottom: 1rem;
	font-size: 0.95rem;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 0.5rem;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
.contact-form input, .contact-form textarea {
	padding: 0.9rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 0.95rem;
}
.contact-form input:focus, .contact-form textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}
.form-group {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}
.form-group label {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: #444;
}
.form-group input, .form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
	outline: none;
	border-color: #2e7d32;
}
.submit-btn {
	width: 100%;
	background-color: #2e7d32;
	color: #ffffff;
	padding: 14px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.submit-btn:hover {
	background-color: #1b5e20;
}
/* Mensajes de Estado */
.status-alert {
	padding: 15px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 0.95rem;
	line-height: 1.5;
}
.status-alert.success {
	background-color: #e8f5e9;
	color: #1b5e20;
	border: 1px solid #c8e6c9;
}
.status-alert.error {
	background-color: #ffebee;
	color: #c62828;
	border: 1px solid #ffcdd2;
}
/* Footer */
.footer {
	background-color: #1a1a1a;
	color: #888;
	text-align: center;
	padding: 2rem 0;
	font-size: 0.85rem;
}
/* Botón Flotante de WhatsApp */
.whatsapp-float {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	z-index: 999;
	transition: transform 0.3s ease, background-color 0.3s ease;
	text-decoration: none;
}
.whatsapp-float:hover {
	transform: scale(1.1);
	background-color: #20ba5a;
}
.whatsapp-icon {
	width: 35px;
	height: 35px;
}
/* CSS para los botones de banderas del traductor*/
.lang-flags {
	float: right;
	padding: 0 15px;
	color: var(--white);
}
.flag-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0 1px;
}
.flag-btn img {
	width: 25px;
	height: 14px;
	border-radius: 3px;
	opacity: 1;
	transition: transform 0.2s, opacity 0.2s;
}
.flag-btn img:hover {
	opacity: 1;
	transform: scale(1.25);
}

/* Responsivo Mobile */
@media (max-width: 768px) {
.whatsapp-float {
	bottom: 20px;
	right: 20px;
	width: 52px;
	height: 52px;
}
.whatsapp-icon {
	width: 30px;
	height: 30px;
}
.nav-container {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.menu-toggle {
	display: flex;
}
.nav {
	display: none;
	flex-direction: column;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--white);
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	padding: 1rem 0;
}
.nav.active {
	display: flex;
}
.nav a {
	margin: 0;
	padding: 0.8rem 2rem;
	width: 100%;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}
.nav a:last-child {
	border-bottom: none;
}
.hero h1 {
	font-size: 2rem;
}
.highlight-grid .card ul {
	padding: 0;
}

}
