:root {
    --verde-alma: #94b4a1;
    --tierra-alma: #d2b48c;
    --oscuro: #2c3e50;
    --blanco: #ffffff;
    --gris-claro: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; }

.container { padding: 60px 10%; }
.bg-light { background-color: var(--gris-claro); }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: var(--blanco);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
}

.logo img { height: 70px; }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--oscuro); font-weight: 400; }

/* Botones Nav */
.btn-nav {
    padding: 8px 18px;
    border-radius: 20px;
    color: white !important;
    font-size: 0.9rem;
    font-weight: bold;
}
.btn-cliente { background-color: var(--verde-alma); }
.btn-intranet { background-color: var(--oscuro); }

/* Hero */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/Hero-bg.jpg'); /* Puedes subir una foto de campo aquí */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; }

/* Secciones */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { color: var(--oscuro); font-size: 2rem; border-bottom: 3px solid var(--verde-alma); display: inline-block; padding-bottom: 5px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature-card { background: white; padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-item { background: white; padding: 15px; border-left: 5px solid var(--verde-alma); box-shadow: 2px 2px 5px rgba(0,0,0,0.05); }

footer { background: var(--oscuro); color: white; text-align: center; padding: 20px; margin-top: 40px; }