* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1e2a2e;
    background-color: #fefcf5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: #0e2c1f;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    background-color: #2d6a4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    color: #f1f7ed;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #b7ef9c;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('https://placehold.co/1600x900/2d5a3f/white?text=Selva+Central') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    background: #2d6a4fcc;
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 28px;
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-icons span {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f4a261;
    color: #1e2a2e;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #e76f51;
    color: white;
    transform: scale(1.02);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #2d6a4f;
    font-weight: 600;
    background: #e9f5e9;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 12px;
    color: #1a3c2c;
}

.quienes-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 16px;
}

.card {
    background: white;
    padding: 32px 24px;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
    transition: all 0.25s;
    text-align: center;
    border: 1px solid #e9ecef;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    border-color: #cfe3cf;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: #2d6a4f;
}

/* Features */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    background: #f2f7f0;
    padding: 40px;
    border-radius: 48px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
}

.feature i {
    font-size: 1.6rem;
    color: #2d6a4f;
    width: 36px;
}

/* Contacto */
.contacto {
    background-color: #1e3a2f;
    color: white;
    border-radius: 40px 40px 0 0;
    margin-top: 20px;
}

.contacto-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.contacto-info h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.contacto-info p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacto-info a {
    color: #f4a261;
    text-decoration: none;
}

.contacto-info a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #f4a261;
}

.btn-secondary {
    background-color: #f4a261;
    color: #1e2a2e;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    margin-top: 16px;
}

.btn-secondary:hover {
    background-color: #e76f51;
    color: white;
}

.contacto-message p {
    font-size: 1.3rem;
    font-weight: 500;
}

.footer {
    background-color: #0e2c1f;
    color: #cbd5c3;
    text-align: center;
    padding: 28px 0;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        width: 100%;
        margin-top: 16px;
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 16px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-icons {
        gap: 12px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .features-list {
        padding: 24px;
    }
    .contacto-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .contacto-info p {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}