:root {
    /* Eco-Tech Palette */
    --primary: #2F693A; /* Nature Green */
    --primary-light: #4A8C57;
    --secondary: #F3A712; /* Solar Yellow/Orange */
    --secondary-light: #F6C252;
    --bg-main: #F4F7F2; /* Very light earthy green/gray */
    --bg-alt: #FFFFFF;
    --text-dark: #1F2E23;
    --text-light: #6B7C70;
    
    /* Glassmorphism settings */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(47, 105, 58, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Glassmorphism Utilities */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.glass-nav.scrolled {
    padding: 0.5rem 5%;
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* Navigation */
.logo-container h1 {
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-container h1 span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: var(--text-dark);
}

nav a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(47, 105, 58, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-dark) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(243, 167, 18, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

/* Section Layout */
.section-spacing {
    padding: 100px 5%;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-alt);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 80% 20%, rgba(243, 167, 18, 0.15), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(47, 105, 58, 0.1), transparent 50%);
}

.hero-content {
    text-align: center;
    padding: 50px;
    max-width: 800px;
}

.hero h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Split Content */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.text-block h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.module-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.module-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Criterios */
.criterios-box {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.criterio-item {
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
}

.criterio-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer-brand span {
    color: var(--secondary);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-light);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--secondary-light);
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Green */
    margin: 15px 0;
    box-shadow: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .split-content {
        grid-template-columns: 1fr;
    }
    
    .section-spacing {
        padding: 60px 5%;
    }
}
