/* Estilos para a seção de Controle Avançado */
.controle-avancado-section {
    width: 100%;
    background-color: #0756E4;
    padding: 80px 0;
    color: #fff;
}

.controle-avancado-header {
    text-align: center;
    margin-bottom: 50px;
}

.controle-avancado-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.controle-avancado-divider {
    width: 80px;
    height: 4px;
    background-color: #fff;
    margin: 0 auto;
}

.controle-avancado-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.controle-avancado-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.controle-avancado-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.controle-avancado-icon i {
    font-size: 64px;
}

.controle-avancado-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.controle-avancado-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.controle-avancado-cta {
    text-align: center;
    margin-top: 50px;
}

.controle-avancado-button {
    display: inline-block;
    background-color: #fff;
    color: #0756E4;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.controle-avancado-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Force white icons within Controle Avançado section */
.controle-avancado-section .material-icons {
    color: #fff !important;
}

/* Estilos para a seção de Eficiência em ação */
.eficiencia-section {
    padding: 30px 0; /* reduced to make height closer to content */
    background-color: #f8f9fa;
}

.eficiencia-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 24px; /* reduced spacing */
}

.eficiencia-title {
    color: #292D38;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.eficiencia-subtitle {
    color: #525662;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.eficiencia-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.eficiencia-text-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 300px;
    padding: 20px;
}

.eficiencia-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.eficiencia-feature {
    border-left: 4px solid #0756E4;
    padding-left: 15px;
    margin-bottom: 0;
}

.eficiencia-feature:last-child {
    margin-bottom: 0;
}

.eficiencia-feature-title {
    color: #292D38;
    font-weight: 600;
    margin-bottom: 10px;
}

.eficiencia-feature-text {
    color: #525662;
    font-weight: 400;
    line-height: 1.6;
}

.eficiencia-image-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 300px;
    padding: 20px;
    text-align: center;
    display: none; /* Hide to avoid reserving space when image is invisible */
}

.eficiencia-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Estilo para o título de recursos */
.credenciais-recursos-titulo {
    text-align: center;
    margin: 30px 0;
    color: #0756E4;
    font-size: 24px;
    font-weight: 600;
}

/* Estilo para o texto CTA após os recursos */
.credenciais-cta-texto {
    text-align: center;
    margin: 40px auto 20px;
    font-size: 20px;
    font-weight: 600;
    color: #292D38;
    max-width: 800px;
    line-height: 1.5;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .controle-avancado-title {
        font-size: 30px;
    }
    
    .eficiencia-title {
        font-size: 28px;
    }
    
    .credenciais-recursos-titulo {
        font-size: 22px;
        margin: 25px 0;
    }
    
    .credenciais-cta-texto {
        font-size: 18px;
        margin: 30px auto 15px;
    }

    /* Stack eficiencia features on mobile */
    .eficiencia-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
