/* --- css/home.css --- */

/* --- HERO SECTION (NOVA ESTRUTURA LCP FRIENDLY) --- */
.hero-section {
    color: white;
    padding: 100px 0;
}

/* Wrapper para imagem e gradiente ficarem no fundo */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Fica atrás de tudo */
}

/* A imagem em si */
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher tudo sem distorcer */
    object-position: center center;
}

/* Garante que o texto fique na frente de tudo */
.hero-section .container {
    z-index: 2;
}

/* Ajustes Mobile mantidos */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    /* Não precisamos mais trocar o background via CSS aqui, 
       o HTML <picture> já faz isso automaticamente! */
}

/* --- 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;
    }
}