
/* Hero Section */
.hero-sustentable {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/casas-sustentables/brote.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 4rem;
    padding-bottom: 13rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-sustentable .hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.hero-sustentable .hero-text p {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Contenido Principal */
.main-content {
    background-color: #f9f9f9;
}

.sustainable-info {
    padding: 60px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sustainable-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.sustainable-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 40px 0;
}

.benefit-card {
    background-color: #fff;
    border-radius: 1.2rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: #2c3e50 !important;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.conclusion {
    margin-top: 40px;
    padding: 20px;
    background-color: #e8f8f5;
    border-left: 5px solid #27ae60;
    border-radius: 0 8px 8px 0;
}

.conclusion p {
    margin: 0;
}

.conclusion .emphasis {
    font-weight: 600;
    color: #1e8449;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-sustentable .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-sustentable .hero-text p {
        font-size: 1.2rem;
    }

    .sustainable-info h2 {
        font-size: 2rem;
    }

    .info-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-sustentable {
        padding: 80px 15px;
    }

    .hero-sustentable .hero-text h1 {
        font-size: 2rem;
    }

    .hero-sustentable .hero-text p {
        font-size: 1rem;
    }
    
    .sustainable-info {
        padding: 40px 15px;
    }

    .info-container {
        padding: 20px;
    }

    .sustainable-info h2 {
        font-size: 1.8rem;
    }

    .benefit-card p,
    .sustainable-info p {
        font-size: 1rem;
    }
}