:root {
    --primary-color: #1b4332; /* Verde bosque profundo */
    --accent-color: #d4a373;  /* Tono tierra/arena */
    --text-dark: #2c3e50;
    --bg-light: #fdfaf5;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1544413647-735952e4249a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

.badge {
    display: inline-block;
    background: var(--accent-color);
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--accent-color);
    margin: 30px auto;
}

/* Info Section */
.info-section {
    padding: 80px 0 40px;
}

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

.search-box {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-box input {
    padding: 15px 25px;
    width: 350px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.search-box button {
    padding: 15px 35px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.search-box button:hover {
    background: #2d6a4f;
    transform: scale(1.05);
}

/* Cards Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0 100px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

footer {
    padding: 50px 0;
    background: #1a1a1a;
    color: #999;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .search-box { flex-direction: column; align-items: center; }
    .search-box input { width: 100%; }
    .search-box button { width: 100%; }
}