/* --- css/home.css --- */

/* --- HERO SECTION (CAPA) --- */
.hero-section {
    /* Background específico da Home */
    background: url('../img/capa_hero.webp') center center / cover no-repeat,
        linear-gradient(rgba(0, 111, 77, 0.85), rgba(0, 50, 30, 0.9));
    color: white;
    padding: 100px 0;
    position: relative;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.hero-subtitle-highlight {
    font-family: var(--font-body);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.75rem;
}

/* --- CARDS DE DIFERENCIAIS (Ícones abaixo do Hero) --- */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    border-bottom: 5px solid var(--liquigas-green);
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 3rem;
    color: var(--liquigas-orange);
    margin-bottom: 20px;
}

/* --- SEÇÃO QUEM SOMOS --- */
.about-section {
    padding: 80px 0;
}
.about-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--liquigas-orange);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    font-family: var(--font-title);
}

/* --- SEÇÃO B2B (EMPRESAS) --- */
.b2b-section {
    background-color: #f0f2f5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.b2b-content {
    z-index: 2;
    position: relative;
}

/* --- MEDIA QUERIES ESPECÍFICAS DA HOME --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    .about-section {
        text-align: center;
    }
}

.columns-2 {
    column-count: 2;
    column-gap: 2rem;
}
@media (max-width: 768px) {
    .columns-2 {
        column-count: 1;
    }
}