:root {
    --primary: #D35400; /* Naranja tierra */
    --dark: #1A1A1B;
    --text: #4A4A4A;
    --bg: #FDFCFB;
    --border: rgba(0,0,0,0.08);
}

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

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

/* Navbar Vitalizado */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(253, 252, 251, 0.9);
    backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--border);
}

.logo-container { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 35px; }
.logo-text { font-weight: 700; font-size: 1.2rem; }
.logo-text span { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.9rem; }

.nav-badge { background: var(--dark); color: white !important; padding: 6px 15px; border-radius: 4px; font-weight: 600; }

/* Hero Split Layout */
.hero { padding: 100px 0; background: radial-gradient(circle at top right, #FFF5EE, var(--bg)); }
.hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.hero-content h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 25px; }
.italic-text { font-family: 'Lora', serif; font-style: italic; color: var(--primary); }

.hero-subtext { font-size: 1.2rem; color: var(--text); margin-bottom: 30px; font-weight: 300; }
.hero-tags { display: flex; gap: 20px; color: var(--primary); font-weight: 700; font-size: 0.9rem; }

/* Form Box */
.hero-form-box {
    background: white; padding: 40px; border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-top: 4px solid var(--primary);
}

.hero-form-box h3 { margin-bottom: 10px; }
.hero-form-box p { font-size: 0.9rem; color: #666; margin-bottom: 25px; }

input, select {
    width: 100%; padding: 12px; margin-bottom: 15px;
    border: 1px solid #EEE; border-radius: 6px; font-family: inherit;
}

.btn-primary {
    background: var(--dark); color: white; border: none;
    padding: 15px; width: 100%; border-radius: 6px;
    font-weight: 700; cursor: pointer; transition: 0.3s;
}

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

/* Manifesto & Pillars */
.manifesto { padding: 100px 0; background: white; text-align: center; }
blockquote { font-family: 'Lora', serif; font-style: italic; font-size: 2rem; margin: 20px auto; max-width: 800px; }

.pillars { padding: 100px 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }

.card { background: white; padding: 30px; border-radius: 8px; border: 1px solid var(--border); transition: 0.3s; }
.card:hover { border-color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.02); }
.card .icon { font-size: 2rem; margin-bottom: 15px; display: block; }

/* Status */
.form-success { display: none; margin-top: 20px; color: var(--primary); font-weight: 700; text-align: center; }

.footer { padding: 60px 0; background: #111; color: white; text-align: center; font-size: 0.9rem; }
.tagline { opacity: 0.5; margin-top: 10px; }

@media (max-width: 768px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero-tags { justify-content: center; }
}